Atomic vector: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
(→Links) |
||
Line 26: | Line 26: | ||
The '''Unicode Atomic Vector''' (<source lang=apl inline>⎕AVU</source>) defines characters in <source lang=apl inline>⎕AV</source> as a list of Unicode code points. | The '''Unicode Atomic Vector''' (<source lang=apl inline>⎕AVU</source>) defines characters in <source lang=apl inline>⎕AV</source> as a list of Unicode code points. | ||
== | == External links == | ||
* [https://help.dyalog.com/ | === Documentation === | ||
* [http://microapl.com/apl_help/ch_020_070_060.htm APLX] | |||
* [https://help.dyalog.com/latest/index.htm#Language/System%20Functions/av.htm Dyalog] | |||
=== References === | |||
<references/> | |||
{{APL built-ins}} | |||
[[Category:System constants]] | [[Category:System constants]] |
Revision as of 04:21, 7 July 2020
Atomic vector (⎕AV
) contains 256 characters. This was the entire character set in some of the older interpreters that did not support Unicode.
In Dyalog APL:
6 41⍴10↓⎕AV ⌶ɫ%'⍺⍵_abcdefghijklmnopqrstuvwxyz��¯.⍬012 3456789�⊢¥$£¢∆ABCDEFGHIJKLMNOPQRSTUVWXYZ� �ý·?⍙ÁÂÃÇÈÊËÌÍÎÏÐÒÓÔÕÙÚÛÝþãìðòõ{€}⊣⌷¨ÀÄÅÆ ⍨ÉÑÖØÜßàáâäåæçèéêëíîïñ[/⌿\⍀<≤=≥>≠∨∧-+÷×?∊ ⍴~↑↓⍳○*⌈⌊∇∘(⊂⊃∩∪⊥⊤|;,⍱⍲⍒⍋⍉⌽⊖⍟⌹!⍕⍎⍫⍪≡≢óôöø "#�&´┘┐┌└┼─├┤┴┬│@ùúû^ü`∣¶:⍷¿¡⋄←→⍝)]� §⎕⍞⍣
In GNU APL:
5 45⍴31↓⎕AV !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJK LMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwx yz{|}~¥€⇄∧∼≬⋆⋸⌸⌺⌼μ⍁¡⍣⍅⎕⍞⌹⍆⍤⍇⍈⍊⊤λ⍍⍏£⊥⍶⌶⍐⍑χ≢⍖⍗ ⍘⍚⍛⌈⍜⍢∪⍨⍕⍎⍬⍪∣│┤⍟∆∇→╣║╗╝←⌊┐└┴┬├─┼↑↓╔╚╩╦╠═╬≡⍸⍷∵ ⌷⍂⌻⊢⊣◊┘┌█▄▌▐▀⍺⍹⊂⊃⍝⍲⍴⍱⌽⊖○∨⍳⍉∈∩⌿⍀≥≤≠×÷⍙∘⍵⍫⍋⍒¯¨
⎕AV
is obsolete in Dyalog APL since Unicode Edition was introduced. It no longer contains all the glyphs used for primitive functions and operators in Dyalog APL.
The Unicode Atomic Vector (⎕AVU
) defines characters in ⎕AV
as a list of Unicode code points.
External links
Documentation
References