RAD: Difference between revisions

From APL Wiki
Jump to navigation Jump to search
Miraheze>Adám Brudzewsky
No edit summary
Miraheze>Adám Brudzewsky
m (Text replacement - "<code>" to "<source lang=apl inline>")
Line 20: Line 20:


RAD adds a few new primitives, among them:
RAD adds a few new primitives, among them:
* <code>μ</code> Arithmetic mean/Mold left like right
* <source lang=apl inline>μ</code> Arithmetic mean/Mold left like right
* <code>π</code> Pi
* <source lang=apl inline>π</code> Pi
* <code>"</code> Character↔Integer (<code>⎕UCS</code>)
* <source lang=apl inline>"</code> Character↔Integer (<source lang=apl inline>⎕UCS</code>)
* <code>⍁</code> Left-to-right version of <code>/</code>
* <source lang=apl inline>⍁</code> Left-to-right version of <source lang=apl inline>/</code>
== References ==
== References ==
<references />
<references />
{{APL programming language}}
{{APL programming language}}

Revision as of 09:06, 29 October 2019

RAD stands for Rankless APL Derivative. It is very closely related to APL (mainly the Dyalog variety), but uses K's array model, including the ability to "box" functions and use them as elements of an array. It was created by Zachary Taylor, 3rd place winner of Dyalog Ltd.'s 2017 APL Programming Contest.[1]

RAD adds a few new primitives, among them:

  • <source lang=apl inline>μ Arithmetic mean/Mold left like right
  • <source lang=apl inline>π Pi
  • <source lang=apl inline>" Character↔Integer (<source lang=apl inline>⎕UCS)
  • <source lang=apl inline>⍁ Left-to-right version of <source lang=apl inline>/

References

Template:APL programming language