5 lines
87 B
Kotlin
Vendored
5 lines
87 B
Kotlin
Vendored
open class IPushPop<T> {
|
|
val isEmpty : Boolean
|
|
fun push(item : T)
|
|
fun pop() : T
|
|
} |