Function array: Difference between revisions
(Created page with "A '''function array''', or '''fnarray''', is a value that is conceptually an array of functions. It can be applied to arguments, which applies each function indepe...") |
m (Features navbox instead of syntax) |
||
Line 7: | Line 7: | ||
== References == | == References == | ||
<references/> | <references/> | ||
{{APL | {{APL features}}[[Category:Kinds of array]][[Category:Functions]][[Category:APL syntax]] |
Revision as of 13:16, 20 August 2022
A function array, or fnarray, is a value that is conceptually an array of functions. It can be applied to arguments, which applies each function independently and gives an array of results. Several languages that don't ordinarily support placing a function in an array have function arrays as a special construct: Dyalog APL, dzaima/APL, and Nial, which uses the name "atlas".
In dzaima/APL and Nial function arrays are constructed by the vector form of array notation, allowing only rank-1 function arrays. In Dyalog APL they can be produced by taking a field of an array of namespaces that all contain that field with a function value. fnarray
in the dfns workspace wraps this functionality in an operator.[1]
The FP language features a "function composition" construction that applies like a function array. In the I language, which has first-class functions, lists may be applied to arguments, and apply each element independently, so that a list of functions also behaves like a function array.
References
- ↑ Dfns workspace.
fnarray
― Array of functions.
APL features [edit] | |
---|---|
Built-ins | Primitives (functions, operators) ∙ Quad name |
Array model | Shape ∙ Rank ∙ Depth ∙ Bound ∙ Index (Indexing) ∙ Axis ∙ Ravel ∙ Ravel order ∙ Element ∙ Scalar ∙ Vector ∙ Matrix ∙ Simple scalar ∙ Simple array ∙ Nested array ∙ Cell ∙ Major cell ∙ Subarray ∙ Empty array ∙ Prototype |
Data types | Number (Boolean, Complex number) ∙ Character (String) ∙ Box ∙ Namespace ∙ Function array |
Concepts and paradigms | Conformability (Scalar extension, Leading axis agreement) ∙ Scalar function (Pervasion) ∙ Identity element ∙ Complex floor ∙ Array ordering (Total) ∙ Tacit programming (Function composition, Close composition) ∙ Glyph ∙ Leading axis theory ∙ Major cell search ∙ First-class function |
Errors | LIMIT ERROR ∙ RANK ERROR ∙ SYNTAX ERROR ∙ DOMAIN ERROR ∙ LENGTH ERROR ∙ INDEX ERROR ∙ VALUE ERROR ∙ EVOLUTION ERROR |