We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8dd97f6 commit a20377cCopy full SHA for a20377c
base/operators.jl
@@ -302,8 +302,6 @@ const ⩶ = ===
302
303
"""
304
!==(x, y)
305
- !⩵(x, y)
306
- !⩶(x, y)
307
≢(x, y)
308
309
Always gives the opposite answer as [`===`](@ref).
@@ -320,8 +318,6 @@ false
320
318
```
321
319
322
!==(@nospecialize(x), @nospecialize(y)) = !(x === y)
323
-!⩵(@nospecialize(x), @nospecialize(y)) = !(x === y)
324
-!⩶(@nospecialize(x), @nospecialize(y)) = !(x === y)
325
const ≢ = !==
326
327
@@ -536,7 +532,6 @@ identity(@nospecialize x) = x
536
532
(|)(x::Integer) = x
537
533
xor(x::Integer) = x
538
534
539
-const − = -
540
535
const ⊻ = xor
541
const ⊼ = nand
542
const ⊽ = nor
0 commit comments