-
Notifications
You must be signed in to change notification settings - Fork 326
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
Expose Unicode normalization methods on Texts #7425
Merged
Merged
Changes from 18 commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
50b3480
code
GregoryTravis fac0b1f
just n
GregoryTravis a8a90b6
example
GregoryTravis a5d1cae
changelog
GregoryTravis 4547ef6
Merge branch 'develop' into wip/gmt/6201-normalization
GregoryTravis f1459f3
test check codepoints
GregoryTravis 8f439aa
support normalization modes
GregoryTravis fae7bcb
comment
GregoryTravis 6dc398b
widget
GregoryTravis 7ecc6cb
export in Main
GregoryTravis f13919c
remove redundant import in spec
GregoryTravis d496855
review
GregoryTravis 2890c0f
Merge branch 'develop' into wip/gmt/6201-normalization
GregoryTravis 1af6fd6
period
GregoryTravis 32a1f92
review
GregoryTravis b345318
Merge branch 'develop' into wip/gmt/6201-normalization
GregoryTravis d8e050d
Merge branch 'develop' into wip/gmt/6201-normalization
GregoryTravis 15d97b6
Merge branch 'develop' into wip/gmt/6201-normalization
GregoryTravis b5104f7
remove use of default_widget
GregoryTravis 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
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
41 changes: 41 additions & 0 deletions
41
distribution/lib/Standard/Base/0.0.0-dev/src/Data/Text/Normalization.enso
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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import project.Any.Any | ||
|
||
import project.Data.Vector.Vector | ||
|
||
polyglot java import com.ibm.icu.text.Normalizer2.Mode | ||
|
||
## Enso representations of `com.ibm.icu.text.Normalizer2.Mode`. Does not | ||
include all values of `Mode`. | ||
type Normalization | ||
## Unicode NFC normalization mode. | ||
NFC | ||
|
||
## Unicode NFD normalization mode. | ||
NFD | ||
|
||
## Unicode NFKC normalization mode. | ||
NFKC | ||
|
||
## Unicode NFKD normalization mode. | ||
NFKD | ||
|
||
## Unicode NFKC_CF normalization mode. | ||
NFKCCasefold | ||
|
||
## PRIVATE | ||
get_java_mode : Any | ||
get_java_mode self = case self of | ||
Normalization.NFC -> Mode.COMPOSE | ||
Normalization.NFD -> Mode.DECOMPOSE | ||
Normalization.NFKC -> Mode.COMPOSE | ||
Normalization.NFKD -> Mode.DECOMPOSE | ||
Normalization.NFKCCasefold -> Mode.COMPOSE | ||
|
||
## PRIVATE | ||
get_mode_name : Any | ||
get_mode_name self = case self of | ||
Normalization.NFC -> "nfc" | ||
Normalization.NFD -> "nfc" | ||
Normalization.NFKC -> "nfkc" | ||
Normalization.NFKD -> "nfkc" | ||
Normalization.NFKCCasefold -> "nfkc_cf" |
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.
Need to remove this line.