We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d79b9e9 commit 2634acaCopy full SHA for 2634aca
src/kinds.jl
@@ -255,7 +255,9 @@ const _kind_names =
255
"⭁"
256
"⭂"
257
"⭃"
258
+ "⥷"
259
"⭄"
260
+ "⥺"
261
"⭇"
262
"⭈"
263
"⭉"
@@ -637,6 +639,7 @@ const _kind_names =
637
639
"⊽"
638
640
"⋎"
641
"⋓"
642
+ "⟇"
643
"⧺"
644
"⧻"
645
"⨈"
test/tokenize.jl
@@ -882,6 +882,9 @@ end
882
"⫪ ⫫"
883
])
884
end
885
+ if VERSION >= v"1.10-DEV"
886
+ push!(ops, "⥷ ⥺ ⟇")
887
+ end
888
allops = split(join(ops, " "), " ")
889
@test all(s->Base.isoperator(Symbol(s)) == is_operator(first(collect(tokenize(s))).kind), allops)
890
0 commit comments