UnicodeSupplement

1.0.0

Unicode Supplement for Swift.
YOCKOW/SwiftUnicodeSupplement

What's New

Release v1.0.0

2020-04-02T08:26:44Z

What is SwiftUnicodeSupplement?

SwiftUnicodeSupplement adds some additional functions to Unicode(.Scalar). Although SE-0211 is already implemented in Swift 5.0, some features (such as IDNAStatus) implemented in this library may be useful.

Requirements

  • Swift 5 (including compatibility mode for Swift 4 or 4.2)
  • macOS or Linux

Usage

import UnicodeSupplement

let a: Unicode.Scalar = "a"

print(a.latestProperties.bidiClass == .leftToRight)
// -> true

print(a.latestProperties.canonicalCombiningClass == .notReordered)
// -> true

print(a.latestProperties.isMath)
// -> false

print(a.latestProperties.isAlphabetic)
// -> true

print(a.latestProperties.generalCategory == .lowercaseLetter)
// -> true

print(a.latestProperties.joiningGroup == .noJoiningGroup)
// -> true

print(a.latestProperties.joiningType == .nonJoining)
// -> true

print(a.latestProperties.script == .latin)
// -> true

print(a.latestProperties.isWhitespace) 
// -> false

print(a.latestProperties.isASCIIHexDigit)
// -> true

Update

You can run ./utils/update to update properties.

License

MIT License.
See "LICENSE.txt" for more information.

Description

  • Swift Tools 5.0.0
View More Packages from this Author

Dependencies

Last updated: Tue Sep 26 2023 07:03:36 GMT-0900 (Hawaii-Aleutian Daylight Time)