feat: add FrozenSet, MemoryView

This commit is contained in:
Shunsuke Shibayama 2023-03-26 11:23:28 +09:00
parent b9ff06bb35
commit 824075f7ee
6 changed files with 102 additions and 2 deletions

View file

@ -1,6 +1,6 @@
.Array! = 'array': ClassType
.Array!.
__call__: (typecode: Str, initializer := [Obj; _] or Iterable(Obj)) -> .Array
__call__: (typecode: Str, initializer := [Obj; _] or Iterable(Obj)) -> .Array!
typecode: Str
itemsize: Nat
append: (self: RefMut(.Array!), x: Obj) => NoneType