Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Addition of Unicode counterparts of some common operators. #41787

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
11 changes: 11 additions & 0 deletions base/exports.jl
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,10 @@ export
≠,
!==,
≡,
⩶,
≢,
!⩵,
!⩶,
xor,
⊻,
nand,
Expand All @@ -179,18 +182,26 @@ export
*,
+,
-,
−,
/,
//,
<,
≮,
<:,
<<,
<=,
≤,
⩽,
≰,
==,
⩵,
>,
≯,
>:,
>=,
≥,
⩾,
≱,
>>,
>>>,
\,
Expand Down
81 changes: 75 additions & 6 deletions base/operators.jl
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ end

"""
==(x, y)
⩵(x, y)

Generic equality operator. Falls back to [`===`](@ref).
Should be implemented for all types with a notion of equality, based on the abstract value
Expand Down Expand Up @@ -84,6 +85,7 @@ If some type defines `==`, [`isequal`](@ref), and [`isless`](@ref) then it shoul
also implement [`<`](@ref) to ensure consistency of comparisons.
"""
==
const ⩵ = ==

"""
isequal(x, y)
Expand Down Expand Up @@ -258,7 +260,7 @@ end

"""
!=(x, y)
≠(x,y)
≠(x, y)

Not-equals comparison operator. Always gives the opposite answer as [`==`](@ref).

Expand All @@ -279,8 +281,9 @@ false
const ≠ = !=

"""
===(x,y) -> Bool
≡(x,y) -> Bool
===(x, y) -> Bool
≡(x, y) -> Bool
⩶(x, y) -> Bool

Determine whether `x` and `y` are identical, in the sense that no program could distinguish
them. First the types of `x` and `y` are compared. If those are identical, mutable objects
Expand All @@ -304,10 +307,13 @@ true
"""
===
const ≡ = ===
const ⩶ = ===

"""
!==(x, y)
≢(x,y)
!⩵(x, y)
!⩶(x, y)
≢(x, y)

Always gives the opposite answer as [`===`](@ref).

Expand All @@ -323,6 +329,8 @@ false
```
"""
!==(@nospecialize(x), @nospecialize(y)) = !(x === y)
!⩵(@nospecialize(x), @nospecialize(y)) = !(x === y)
!⩶(@nospecialize(x), @nospecialize(y)) = !(x === y)
const ≢ = !==

"""
Expand Down Expand Up @@ -350,6 +358,7 @@ false
```
"""
<(x, y) = isless(x, y)
≮(x, y) = !<(x, y)

"""
>(x, y)
Expand All @@ -376,10 +385,12 @@ true
```
"""
>(x, y) = y < x
≯(x, y) = !>(x, y)

"""
<=(x, y)
≤(x,y)
≤(x, y)
⩽(x, y)

Less-than-or-equals comparison operator. Falls back to `(x < y) | (x == y)`.

Expand All @@ -400,10 +411,13 @@ false
"""
<=(x, y) = (x < y) | (x == y)
const ≤ = <=
const ⩽ = ≤
≰(x, y) = !≤(x, y)

"""
>=(x, y)
≥(x,y)
≥(x, y)
⩾(x, y)

Greater-than-or-equals comparison operator. Falls back to `y <= x`.

Expand All @@ -424,6 +438,8 @@ true
"""
>=(x, y) = (y <= x)
const ≥ = >=
const ⩾ = ≥
≱(x, y) = !≥(x, y)

# this definition allows Number types to implement < instead of isless,
# which is more idiomatic:
Expand Down Expand Up @@ -595,6 +611,7 @@ identity(x) = x
(|)(x::Integer) = x
xor(x::Integer) = x

const − = -
const ⊻ = xor
const ⊼ = nand
const ⊽ = nor
Expand Down Expand Up @@ -1209,6 +1226,19 @@ used to implement specialized methods.
"""
>=(x) = Fix2(>=, x)

"""
≱(x)

Create a function that compares its argument to `x` using [`≱`](@ref), i.e.
a function equivalent to `y -> y ≱ x`.
The returned function is of type `Base.Fix2{typeof(≱)}`, which can be
used to implement specialized methods.

!!! compat "Julia 1.2"
This functionality requires at least Julia 1.2.
"""
≱(x) = Fix2(≱, x)

"""
<=(x)

Expand All @@ -1222,6 +1252,19 @@ used to implement specialized methods.
"""
<=(x) = Fix2(<=, x)

"""
≰(x)

Create a function that compares its argument to `x` using [`≰`](@ref), i.e.
a function equivalent to `y -> y ≰ x`.
The returned function is of type `Base.Fix2{typeof(≰)}`, which can be
used to implement specialized methods.

!!! compat "Julia 1.2"
This functionality requires at least Julia 1.2.
"""
≰(x) = Fix2(≰, x)

"""
>(x)

Expand All @@ -1235,6 +1278,19 @@ used to implement specialized methods.
"""
>(x) = Fix2(>, x)

"""
≯(x)

Create a function that compares its argument to `x` using [`≯`](@ref), i.e.
a function equivalent to `y -> y ≯ x`.
The returned function is of type `Base.Fix2{typeof(≯)}`, which can be
used to implement specialized methods.

!!! compat "Julia 1.2"
This functionality requires at least Julia 1.2.
"""
≯(x) = Fix2(≯, x)

"""
<(x)

Expand All @@ -1248,6 +1304,19 @@ used to implement specialized methods.
"""
<(x) = Fix2(<, x)

"""
≮(x)

Create a function that compares its argument to `x` using [`≮`](@ref), i.e.
a function equivalent to `y -> y ≮ x`.
The returned function is of type `Base.Fix2{typeof(≮)}`, which can be
used to implement specialized methods.

!!! compat "Julia 1.2"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seems like the wrong version

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@stevengj, Oh, I see, I thought this note was related to Fix2, but how do I know what version of Julia will integrate these modifications? What version should I specify?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I specified 1.8, and added some docstrings for inequality operators added.

This functionality requires at least Julia 1.2.
"""
≮(x) = Fix2(≮, x)

"""
splat(f)

Expand Down
2 changes: 1 addition & 1 deletion src/julia-parser.scm
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
(define prec-lazy-and (add-dots '(&&)))
(define prec-comparison
(append! '(in isa)
(add-dots '(> < >= ≥ <= ≤ == === ≡ != ≠ !== ≢ ∈ ∉ ∋ ∌ ⊆ ⊈ ⊂ ⊄ ⊊ ∝ ∊ ∍ ∥ ∦ ∷ ∺ ∻ ∽ ∾ ≁ ≃ ≂ ≄ ≅ ≆ ≇ ≈ ≉ ≊ ≋ ≌ ≍ ≎ ≐ ≑ ≒ ≓ ≖ ≗ ≘ ≙ ≚ ≛ ≜ ≝ ≞ ≟ ≣ ≦ ≧ ≨ ≩ ≪ ≫ ≬ ≭ ≮ ≯ ≰ ≱ ≲ ≳ ≴ ≵ ≶ ≷ ≸ ≹ ≺ ≻ ≼ ≽ ≾ ≿ ⊀ ⊁ ⊃ ⊅ ⊇ ⊉ ⊋ ⊏ ⊐ ⊑ ⊒ ⊜ ⊩ ⊬ ⊮ ⊰ ⊱ ⊲ ⊳ ⊴ ⊵ ⊶ ⊷ ⋍ ⋐ ⋑ ⋕ ⋖ ⋗ ⋘ ⋙ ⋚ ⋛ ⋜ ⋝ ⋞ ⋟ ⋠ ⋡ ⋢ ⋣ ⋤ ⋥ ⋦ ⋧ ⋨ ⋩ ⋪ ⋫ ⋬ ⋭ ⋲ ⋳ ⋴ ⋵ ⋶ ⋷ ⋸ ⋹ ⋺ ⋻ ⋼ ⋽ ⋾ ⋿ ⟈ ⟉ ⟒ ⦷ ⧀ ⧁ ⧡ ⧣ ⧤ ⧥ ⩦ ⩧ ⩪ ⩫ ⩬ ⩭ ⩮ ⩯ ⩰ ⩱ ⩲ ⩳ ⩵ ⩶ ⩷ ⩸ ⩹ ⩺ ⩻ ⩼ ⩽ ⩾ ⩿ ⪀ ⪁ ⪂ ⪃ ⪄ ⪅ ⪆ ⪇ ⪈ ⪉ ⪊ ⪋ ⪌ ⪍ ⪎ ⪏ ⪐ ⪑ ⪒ ⪓ ⪔ ⪕ ⪖ ⪗ ⪘ ⪙ ⪚ ⪛ ⪜ ⪝ ⪞ ⪟ ⪠ ⪡ ⪢ ⪣ ⪤ ⪥ ⪦ ⪧ ⪨ ⪩ ⪪ ⪫ ⪬ ⪭ ⪮ ⪯ ⪰ ⪱ ⪲ ⪳ ⪴ ⪵ ⪶ ⪷ ⪸ ⪹ ⪺ ⪻ ⪼ ⪽ ⪾ ⪿ ⫀ ⫁ ⫂ ⫃ ⫄ ⫅ ⫆ ⫇ ⫈ ⫉ ⫊ ⫋ ⫌ ⫍ ⫎ ⫏ ⫐ ⫑ ⫒ ⫓ ⫔ ⫕ ⫖ ⫗ ⫘ ⫙ ⫷ ⫸ ⫹ ⫺ ⊢ ⊣ ⟂ ⫪ ⫫ <: >:))))
(add-dots '(> < >= ≥ <= ≤ == === ≡ != ≠ !== !⩵ !⩶ ≢ ∈ ∉ ∋ ∌ ⊆ ⊈ ⊂ ⊄ ⊊ ∝ ∊ ∍ ∥ ∦ ∷ ∺ ∻ ∽ ∾ ≁ ≃ ≂ ≄ ≅ ≆ ≇ ≈ ≉ ≊ ≋ ≌ ≍ ≎ ≐ ≑ ≒ ≓ ≖ ≗ ≘ ≙ ≚ ≛ ≜ ≝ ≞ ≟ ≣ ≦ ≧ ≨ ≩ ≪ ≫ ≬ ≭ ≮ ≯ ≰ ≱ ≲ ≳ ≴ ≵ ≶ ≷ ≸ ≹ ≺ ≻ ≼ ≽ ≾ ≿ ⊀ ⊁ ⊃ ⊅ ⊇ ⊉ ⊋ ⊏ ⊐ ⊑ ⊒ ⊜ ⊩ ⊬ ⊮ ⊰ ⊱ ⊲ ⊳ ⊴ ⊵ ⊶ ⊷ ⋍ ⋐ ⋑ ⋕ ⋖ ⋗ ⋘ ⋙ ⋚ ⋛ ⋜ ⋝ ⋞ ⋟ ⋠ ⋡ ⋢ ⋣ ⋤ ⋥ ⋦ ⋧ ⋨ ⋩ ⋪ ⋫ ⋬ ⋭ ⋲ ⋳ ⋴ ⋵ ⋶ ⋷ ⋸ ⋹ ⋺ ⋻ ⋼ ⋽ ⋾ ⋿ ⟈ ⟉ ⟒ ⦷ ⧀ ⧁ ⧡ ⧣ ⧤ ⧥ ⩦ ⩧ ⩪ ⩫ ⩬ ⩭ ⩮ ⩯ ⩰ ⩱ ⩲ ⩳ ⩵ ⩶ ⩷ ⩸ ⩹ ⩺ ⩻ ⩼ ⩽ ⩾ ⩿ ⪀ ⪁ ⪂ ⪃ ⪄ ⪅ ⪆ ⪇ ⪈ ⪉ ⪊ ⪋ ⪌ ⪍ ⪎ ⪏ ⪐ ⪑ ⪒ ⪓ ⪔ ⪕ ⪖ ⪗ ⪘ ⪙ ⪚ ⪛ ⪜ ⪝ ⪞ ⪟ ⪠ ⪡ ⪢ ⪣ ⪤ ⪥ ⪦ ⪧ ⪨ ⪩ ⪪ ⪫ ⪬ ⪭ ⪮ ⪯ ⪰ ⪱ ⪲ ⪳ ⪴ ⪵ ⪶ ⪷ ⪸ ⪹ ⪺ ⪻ ⪼ ⪽ ⪾ ⪿ ⫀ ⫁ ⫂ ⫃ ⫄ ⫅ ⫆ ⫇ ⫈ ⫉ ⫊ ⫋ ⫌ ⫍ ⫎ ⫏ ⫐ ⫑ ⫒ ⫓ ⫔ ⫕ ⫖ ⫗ ⫘ ⫙ ⫷ ⫸ ⫹ ⫺ ⊢ ⊣ ⟂ ⫪ ⫫ <: >:))))
(define prec-pipe< '(|.<\|| |<\||))
(define prec-pipe> '(|.\|>| |\|>|))
(define prec-colon (append! '(: |..|) (add-dots '(… ⁝ ⋮ ⋱ ⋰ ⋯))))
Expand Down