Function: Difference between revisions

Jump to navigation Jump to search
244 bytes removed ,  10:48, 13 May 2020
→‎Function definition: Simplify; will move some things to Function styles
m (Functions category)
(→‎Function definition: Simplify; will move some things to Function styles)
Line 21: Line 21:
{{main|Function styles}}
{{main|Function styles}}


Every APL comes with [[primitive function]]s, and almost always [[system function]]s, which are defined by the language. [[Derived function]]s can also be created by applying [[operator]]s to [[operand]]s. For example <source lang=apl inline>+/</source>, [[Plus]] [[Reduce]], is a derived function that can be created in any APL. However, early APLs usually did not allow [[assign]]ing a name to such functions: the only ways to call them were to write the function out explicitly and to define an equivalent [[defined function]]. Function assignment became more common in the 1980s, and after the advent of [[tacit programming]] in the 90s it is present in all new APLs.
Every APL comes with [[primitive function]]s, and almost always [[system function]]s, which are defined by the language. In order to create other functions, there are three general methods. Every APL supports at least one of these but there is no universally supported method.
* [[Tacit programming]] treats functions as values to be manipulated directly: [[derived function]]s can be created by applying [[operator]]s to [[operand]]s, and [[train]]s are functions formed from multiple functions.
* [[Anonymous function]]s are defined by a series of expressions that make reference to function arguments ([[dfn]]s use the fixed names <source lang=apl inline>⍺</source> and <source lang=apl inline>⍵</source>). When created they have no name, but they can be [[Assignment|assigned]] one.
* [[Defined function]]s have a function header with syntax that includes the function's name and reflects how it will be used. This is the only way to create [[niladic function]]s.


The traditional way of defining functions in APL, and the most common way to define functions currently, is to create a [[defined function]], which consists of a sequence of APL statements. This is the only way to create a [[niladic function]], although not all ways to define a function support creating niladic functions. There are three major families of function definition:
More recent APLs tend to use the earlier, syntactically simpler, methods on the list above, while older APLs use syntactically more complex ones: in particular, only [[defined function]]s were used in almost all APLs until the 1990s. Because they create functions as values with no names, the first two types require function assignment to create named functions (usually considered a requirement to build complex programs). Function assignment became more common in the 1980s, and, due to the popularity of anonymous functions, is present in all new APLs.
* [[Direct definition]], introduced by [[Ken Iverson]] in [[A Programming Language]] but rarely implemented. Direct definition might be considered a kind of APL [[wikipedia:pseudocode|pseudocode]].
* [[Tradfn]]s (often simply called "defined functions"), introduced by [[APL\360]]. In these functions, a [[function header|header]] line describes the way the function is called and the result is placed in a variable whose name is given in the header.
* [[dfn]]s, developed by [[John Scholes]] and introduced in [[Dyalog APL]]. In a dfn, the arguments are given the fixed names <source lang=apl inline>⍺</source> and <source lang=apl inline>⍵</source>, and the result of the first non-assignment statement is returned.


{{APL syntax}}[[Category:Functions| ]]
{{APL syntax}}[[Category:Functions| ]]

Navigation menu