Type: Difference between revisions
mNo edit summary |
|||
Line 22: | Line 22: | ||
</source> | </source> | ||
{{Works in|[[Dyalog APL]] with [[migration level]]<nowiki>=</nowiki>1}} | {{Works in|[[Dyalog APL]] with [[migration level]]<nowiki>=</nowiki>1}} | ||
== External links == | |||
=== Documentation === | |||
* [http://help.dyalog.com/latest/#Language/Primitive%20Functions/Type.htm Dyalog] | |||
== References == | == References == | ||
<references/> | <references/> | ||
{{APL built-ins}}[[Category:Primitive functions]][[Category:Scalar monadic functions]] | {{APL built-ins}}[[Category:Primitive functions]][[Category:Scalar monadic functions]] |
Revision as of 07:08, 9 July 2020
∊ ⊤ ⍷
|
Type (∊
, ⊤
, ⍷
) is a monadic scalar function which in the nested array model gives information about the type and structure of its argument array's elements. In normal cases, the result is identical to the argument, with all numbers replaced by zeros and all characters replaced by spaces, and the substitution is done recursively.
Support
Few dialects have Type as a primitive function. Dyalog APL uses ∊
(as in prototypical element), but only when migration level is 0, while NARS2000 uses monadic ⊤
(resembling the Latin letter T for Type), which it inherited from NARS. Extended Dyalog APL uses monadic ⍷
with the underscore indicating functionality of the corresponding non-underscored glyph from a non-default migration level.[1]
However, in all dialects that support nested arrays, the type can be determined by enclosing/boxing the array in an empty array, and then coercing out a fill value. Since the array prototype is used as fill element, the resulting array will be the type of the original array:
↑ 0 ⍴ ⊂ 1 2 'ab' ┌─┬─┬──┐ │0│0│ │ └─┴─┴──┘
⊃ 0 ⍴ ⊂ 1 2 'ab' ┌─┬─┬──┐ │0│0│ │ └─┴─┴──┘