Closed
Description
Hello,
I've found a discrepancy between two ways to write ∉ at the REPL Julia v1.6.0-beta1 on Arch Linux.
Both are recognized at the help?>
prompt and suggested to be typed the same way, but only \notin
has methods - \in\not
is undefined.
Here's a summary of the differences
Typed | Displayed | Raw bytes (Vector{UInt8} ) |
help?> typing hint |
Number of methods |
---|---|---|---|---|
\notin<tab> |
∉ | [0xe2, 0x88, 0x89] | "∉" can be typed by \in<tab>\not<tab> |
2 |
\in<tab>\not<tab> |
∉ | [0xe2, 0x88, 0x88, 0xcc, 0xb8] | "∉" can be typed by \in<tab>\not<tab> |
0 |
I'm curious whether others observe the same issue on other systems or Julia versions.
Cheers,
Oliver