Skip to content

Commit 0255cb6

Browse files
author
Adám Brudzewsky
authored
APL: Added ⍥ (#2409)
Introduced into Dyalog APL 18.0 which is just about to be released.
1 parent 4fe0367 commit 0255cb6

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

components/prism-apl.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Prism.languages.apl = {
1717
alias: 'operator'
1818
},
1919
'dyadic-operator': {
20-
pattern: /[.@]/,
20+
pattern: /[.@]/,
2121
alias: 'operator'
2222
},
2323
'assignment': {
@@ -29,4 +29,4 @@ Prism.languages.apl = {
2929
pattern: /[{}:]/,
3030
alias: 'builtin'
3131
}
32-
};
32+
};

components/prism-apl.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
. ⍣ ⍠
22
⍤ ∘ ⌸
3-
@ ⌺
3+
@ ⌺
44

55
----------------------------------------------------
66

77
[
88
["dyadic-operator", "."], ["dyadic-operator", "⍣"], ["dyadic-operator", "⍠"],
99
["dyadic-operator", "⍤"], ["dyadic-operator", "∘"], ["dyadic-operator", "⌸"],
10-
["dyadic-operator", "@"], ["dyadic-operator", "⌺"]
10+
["dyadic-operator", "@"], ["dyadic-operator", "⌺"], ["dyadic-operator", "⍥"]
1111
]
1212

1313
----------------------------------------------------
1414

15-
Checks for dyadic operators.
15+
Checks for dyadic operators.

0 commit comments

Comments
 (0)