mirror of
https://github.com/erg-lang/erg.git
synced 2025-07-13 16:15:15 +00:00
32 lines
1.2 KiB
Python
32 lines
1.2 KiB
Python
.UCD: ClassType
|
|
.UCD.
|
|
lookup: (self: UCD, name: Str) -> Str
|
|
name: (self: UCD, chr: Str, default := Str) -> Str
|
|
decimal: (self: UCD, chr: Str, default := Nat) -> Nat
|
|
digit: (self: UCD, chr: Str, default := Int) -> Int
|
|
numeric: (self: UCD, chr: Str, default := Float) -> Float
|
|
category: (self: UCD, chr: Str,) -> Str
|
|
bidirectional: (self: UCD, chr: Str,) -> Str
|
|
combining: (self: UCD, chr: Str,) -> Nat
|
|
east_asian_width: (self: UCD, chr: Str,) -> Str
|
|
mirrored: (self: UCD, chr: Str,) -> Str
|
|
decomposition: (self: UCD, chr: Str,) -> Str
|
|
normalize: (self: UCD, form: Str, unistr: Str) -> Str
|
|
is_normalized: (self: UCD, form: Str, unistr: Str) -> Bool
|
|
|
|
.unidata_version: Str
|
|
.ucd_3_2_0: UCD
|
|
|
|
.lookup: Str -> Str
|
|
.name: (chr: Str, default := Str) -> Str
|
|
.decimal: (chr: Str, default := Nat) -> Nat
|
|
.digit: (chr: Str, default := Int) -> Int
|
|
.numeric: (chr: Str, default := Float) -> Float
|
|
.category: (chr: Str,) -> Str
|
|
.bidirectional: (chr: Str,) -> Str
|
|
.combining: (chr: Str,) -> Nat
|
|
.east_asian_width: (chr: Str,) -> Str
|
|
.mirrored: (chr: Str,) -> Str
|
|
.decomposition: (chr: Str,) -> Str
|
|
.normalize: (form: Str, unistr: Str) -> Str
|
|
.is_normalized: (form: Str, unistr: Str) -> Bool
|