-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
RFC: Add some unicode function synonyms and infix operators #6582
Merged
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
0625671
Add ⊗ as synonym for kron
jiahao 2a26899
Add √ as synonym for sqrt
jiahao fae924a
Add obelus (÷) as synonym for div
jiahao 67ce8b5
Add ∅ (empty set) as synonym for Set{Any}({})
jiahao 01d98fe
Add ∈ as synonym for `in` and ∋ for containment
jiahao edf4e3d
Add ⋅ as synonym for `dot`
jiahao 7369326
Add ⊆ as synonym for `issubset`
jiahao ad12241
More set relations ⊈, ⊂, ⊄, ⊊.
jiahao e81e2bb
Add ∩ and ∪ as synonyms for `intersect` and `union` resp.
jiahao 73f65ed
Add △ as synonym for `symdiff`
jiahao 6036e78
Add negated element containments ∉, ∌
jiahao 672ca6e
More comparsion operators ≠ (!=), ≡ (===), ≢ (!==), ≤ (<=), ≥ (>=), .…
jiahao 915ba49
Add double solidus (⫽) as synonym for rational division (//)
jiahao efcc36b
Adds ∣ (divides) and its negation ∤
jiahao 971756a
Add × (cross product) as synonym for `cross`
jiahao 3cd38a5
Remove ∅ (empty set) and undefines ⊂ and ⊄
jiahao 4a98190
Changed operator precedence for ∩ and ∪. Undefine △.
jiahao a243cc6
Add ∨ and ∧, and circled and boxed arithmetic operators
jiahao e4fbbef
Merge branch 'master' of github.com:JuliaLang/julia into uniops-552
JeffBezanson 970938e
update set of unicode operators and fix exports
JeffBezanson File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -190,23 +190,29 @@ export | |
# Operators | ||
!, | ||
!=, | ||
≠, | ||
!==, | ||
≡, | ||
≢, | ||
$, | ||
%, | ||
&, | ||
*, | ||
+, | ||
-, | ||
.!=, | ||
.≠, | ||
.+, | ||
.-, | ||
.*, | ||
./, | ||
.<, | ||
.<=, | ||
.≤, | ||
.==, | ||
.>, | ||
.>=, | ||
.≥, | ||
.\, | ||
.^, | ||
/, | ||
|
@@ -215,9 +221,11 @@ export | |
<:, | ||
<<, | ||
<=, | ||
≤, | ||
==, | ||
>, | ||
>=, | ||
≥, | ||
>>, | ||
#.>>, | ||
#.<<, | ||
|
@@ -227,6 +235,7 @@ export | |
|, | ||
~, | ||
:, | ||
÷, | ||
A_ldiv_B!, | ||
A_ldiv_Bc, | ||
A_ldiv_Bt, | ||
|
@@ -442,6 +451,7 @@ export | |
unsigned, | ||
widemul, | ||
zero, | ||
√, | ||
|
||
# specfun | ||
airy, | ||
|
@@ -660,6 +670,8 @@ export | |
triu!, | ||
triu, | ||
vecnorm, | ||
⋅, | ||
×, | ||
|
||
# sparse | ||
etree, | ||
|
@@ -746,6 +758,17 @@ export | |
union, | ||
unique, | ||
values, | ||
∈, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
∉, | ||
∋, | ||
∌, | ||
⊆, | ||
⊈, | ||
⊂, | ||
⊄, | ||
⊊, | ||
∩, | ||
∪, | ||
|
||
# strings and text output | ||
ascii, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
∛
forcbrt
?∠
forangle
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would be nice to parse
√
as a prefix operator.