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

4 lines
123 B
Plaintext

open class IMutableSet<T> : ISet<T>, IMutableIterable<T> {
fun add(item : T) : Boolean
fun remove(item : T) : Boolean
}