blob: 84725423fdc15ff56b9717ea9fca7daca223de5f [file] [log] [blame]
open class IPushPop<T> {
val isEmpty : Boolean
fun push(item : T)
fun pop() : T
}