Skip to content

Instantly share code, notes, and snippets.

@sordina
Created September 28, 2018 05:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sordina/d3099ea5385bb22020064944ee9cefc4 to your computer and use it in GitHub Desktop.
Save sordina/d3099ea5385bb22020064944ee9cefc4 to your computer and use it in GitHub Desktop.
otf_apl_j_substitutions.txt
# https://en.wikipedia.org/wiki/APL_syntax_and_symbols
# https://code.jsoftware.com/wiki/NuVoc
# https://news.ycombinator.com/item?id=8605606
#
#
# sub asterisk by multiply;
# Roll ?B
# Ceiling ⌈B >.
sub greater period by uni2308;
# Floor ⌊B <.
sub less period by uni230A;
# Shape, ⍴B $
sub dollar by uni2374;
# Not, Ti ∼B ~
sub asciitilde by similar;
# Absolut ∣| B # not represented in menlo
# Index g ⍳B i.
sub i period space by uni2373;
sub i period by uni2373;
# Negatio −B -
sub hyphen by minus;
# Identit +B +
# Signum ×B *
sub asterisk by multiply;
# Ravel, ,B ,
# Matrix Inverse ⌹B %.
sub percent period by uni2339;
# Recipro ÷B %
sub percent by divide;
# Pi time ○B
sub o period by circle;
# Logarit ⍟B *.
sub asciicircum period by uni235F;
# Exponen ⋆B *
sub asciicircum by uni22C6;
# Reversa ⌽B |."1
sub bar period quotedbl one by uni233D;
# Reversa ⊖B |.
sub bar period by uni2296;
# Grade u ⍋B /:
sub slash colon by uni234B;
# Grade d ⍒B
sub backslash colon by uni2352;
# Execute ⍎B ??? No known analog
# Monadic ⍕B ???
# Monadic ⍉B |:
sub bar colon by uni2349;
# Factori !B !
#
#
#
#
#
# Add A+B
# Subtra A−B
# Multip A×B
# Divide A÷B
# Expone A⋆B
# Circle A○B
# Deal A?B
# Member A∈B
# Maximu A⌈B
# Minimu A⌊B
# Reshap A⍴B
# Take A↑B
# Drop A↓B
# Decode A⊥B
# Encode A⊤B
# Residu A∣B
# Catena A,B
# Expans A\B
# Compre A/B
# Index A⍳B
# Matrix A⌹B
# Rotati A⌽B
# Rotati A⊖B
# Logari A⍟B
# Dyadic A⍕B
# Genera A⍉B
# Combin A!B
# Diaere A¨B
# Less t A<B
# Less t A≤B
# Equal A=B
# Greate A≥B
# Greate A>B
# Not eq A≠B
# Or A∨B
# And A∧B
# Nor A⍱B
# Nand A⍲B
# Left A⊣B
# Right A⊢B
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment