6 lines
97 B
Kotlin
Vendored
6 lines
97 B
Kotlin
Vendored
open class IPriorityQueue<T> {
|
|
fun extract() : T
|
|
fun add(item : T)
|
|
val isEmpty : Boolean
|
|
}
|