Files
kotlin-fork/compiler/testData/psi/examples/priorityqueues/IPriorityQueue.jet
T
2011-10-20 16:21:18 +02:00

6 lines
97 B
Plaintext

open class IPriorityQueue<T> {
fun extract() : T
fun add(item : T)
val isEmpty : Boolean
}