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