mirror of
https://github.com/erg-lang/erg.git
synced 2025-07-07 21:25:31 +00:00
4 lines
259 B
Python
4 lines
259 B
Python
.heappush!: |T: Type|(heap: Iterable(T), item: T) => NoneType # TODO: Push!
|
|
.heappop!: |T: Type|(heap: Iterable(T)) => T # TODO: Pop!
|
|
.heappushpop!: |T: Type|(heap: Iterable(T), item: T) => T # TODO: Push! and Pop!
|
|
.heapify!: (heap: List(Obj, _)) => NoneType
|