Files
kotlin-fork/compiler/testData/psi/examples/collections/IMutableSet.kt
T
2013-09-17 18:10:00 +04:00

4 lines
123 B
Kotlin
Vendored

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