mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-28 12:14:43 +00:00
Create unicodedata.d.er
This commit is contained in:
parent
d57f0f6606
commit
056469b18c
1 changed files with 32 additions and 0 deletions
32
crates/erg_compiler/lib/pystd/unicodedata.d.er
Normal file
32
crates/erg_compiler/lib/pystd/unicodedata.d.er
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
.UCD: ClassType
|
||||||
|
.UCD.
|
||||||
|
lookup: (self: UCD, name: Str) -> Str
|
||||||
|
name: (self: UCD, chr: Str, default := Str) -> Str
|
||||||
|
decimal: (self: UCD, chr: Str, default := Str) -> Str
|
||||||
|
digit: (self: UCD, chr: Str, default := Str) -> Str
|
||||||
|
numeric: (self: UCD, chr: Str, default := Str) -> Str
|
||||||
|
category: (self: UCD, chr: Str,) -> Str
|
||||||
|
bidirectional: (self: UCD, chr: Str,) -> Str
|
||||||
|
combining: (self: UCD, chr: Str,) -> Str
|
||||||
|
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 := Str) -> Str
|
||||||
|
.digit: (chr: Str, default := Str) -> Str
|
||||||
|
.numeric: (chr: Str, default := Str) -> Str
|
||||||
|
.category: (chr: Str,) -> Str
|
||||||
|
.bidirectional: (chr: Str,) -> Str
|
||||||
|
.combining: (chr: Str,) -> Str
|
||||||
|
.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
|
Loading…
Add table
Add a link
Reference in a new issue