可用的回归测试通过的标准版本
This commit is contained in:
@@ -14,11 +14,11 @@ class Vector[T]:
|
||||
capacity: t.CSizeT
|
||||
elem_size: t.CSizeT
|
||||
pool: mpool.MPool | t.CPtr
|
||||
def __init__(self: Vector, pool: mpool.MPool | t.CPtr, capacity: t.CSizeT, _hint: T) -> t.CVoid: pass
|
||||
def push(self: Vector, value: T) -> t.CVoid: pass
|
||||
def _grow(self: Vector) -> t.CVoid: pass
|
||||
def __init__(self: Vector, pool: mpool.MPool | t.CPtr, capacity: t.CSizeT, _hint: T) -> t.CInt: pass
|
||||
def push(self: Vector, value: T) -> t.CInt: pass
|
||||
def _grow(self: Vector) -> t.CInt: pass
|
||||
def get(self: Vector, index: t.CSizeT) -> T: pass
|
||||
def set(self: Vector, index: t.CSizeT, value: T) -> t.CVoid: pass
|
||||
def set(self: Vector, index: t.CSizeT, value: T) -> t.CInt: pass
|
||||
def len(self: Vector) -> t.CSizeT: pass
|
||||
def clear(self: Vector) -> t.CVoid: pass
|
||||
def free(self: Vector) -> t.CVoid: pass
|
||||
def clear(self: Vector) -> t.CInt: pass
|
||||
def free(self: Vector) -> t.CInt: pass
|
||||
Reference in New Issue
Block a user