mirror of
https://github.com/erg-lang/erg.git
synced 2025-07-18 18:45:22 +00:00
11 lines
316 B
Python
11 lines
316 B
Python
.Struct: ClassType
|
|
.Struct.
|
|
__call__: (format: Str) -> .Struct
|
|
format: Str
|
|
size: Nat
|
|
pack: (self: .Struct, *values: Obj) -> Bytes
|
|
unpack: (self: .Struct, bytes: Bytes) -> Obj
|
|
|
|
.pack: (format: Str, *values: Obj) -> Bytes
|
|
.unpack: (format: Str, bytes: Bytes) -> Obj
|
|
.calcsize: (format: Str) -> Nat
|