Close composition: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
m (Text replacement - "<source" to "<syntaxhighlight") |
||
Line 4: | Line 4: | ||
! Operator !! SHARP !! J close !! J non-close !! Modern | ! Operator !! SHARP !! J close !! J non-close !! Modern | ||
|- | |- | ||
| [[Atop (operator)|Atop]] || < | | [[Atop (operator)|Atop]] || <syntaxhighlight lang=apl inline>⍥</source> || <syntaxhighlight lang=j inline>@</source> || <syntaxhighlight lang=j inline>@:</source> || <syntaxhighlight lang=apl inline>⍤</source> | ||
|- | |- | ||
| [[Over]] || < | | [[Over]] || <syntaxhighlight lang=apl inline>⍤</source> || <syntaxhighlight lang=j inline>&</source> || <syntaxhighlight lang=j inline>&:</source> || <syntaxhighlight lang=apl inline>⍥</source> | ||
|- | |- | ||
| [[Under]] || < | | [[Under]] || <syntaxhighlight lang=apl inline>¨</source> || <syntaxhighlight lang=j inline>&.</source> || <syntaxhighlight lang=j inline>&.:</source> || <syntaxhighlight lang=apl inline>⍢</source> | ||
|} | |} | ||
{{APL features}}[[Category:Composition operators]] | {{APL features}}[[Category:Composition operators]] |
Revision as of 22:18, 10 September 2022
In SHARP APL and J, a close composition is one of the operators Atop, Over, or Under, defined so that the overall result has function rank equal to the right operand. In SHARP all composition operators follow this pattern, while in J, both close and non-close forms (with a result rank of infinity, matching the definition in most modern APLs) are provided.
Operator | SHARP | J close | J non-close | Modern |
---|---|---|---|---|
Atop | <syntaxhighlight lang=apl inline>⍥</source> | <syntaxhighlight lang=j inline>@</source> | <syntaxhighlight lang=j inline>@:</source> | <syntaxhighlight lang=apl inline>⍤</source> |
Over | <syntaxhighlight lang=apl inline>⍤</source> | <syntaxhighlight lang=j inline>&</source> | <syntaxhighlight lang=j inline>&:</source> | <syntaxhighlight lang=apl inline>⍥</source> |
Under | <syntaxhighlight lang=apl inline>¨</source> | <syntaxhighlight lang=j inline>&.</source> | <syntaxhighlight lang=j inline>&.:</source> | <syntaxhighlight lang=apl inline>⍢</source> |
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 |