Files
kotlin-fork/idea/testData/psi/examples/collections/IMutableSet.jet
T
2011-01-02 21:26:50 +03:00

4 lines
126 B
Plaintext

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