4 lines
123 B
Kotlin
Vendored
4 lines
123 B
Kotlin
Vendored
open class IMutableSet<T> : ISet<T>, IMutableIterable<T> {
|
|
fun add(item : T) : Boolean
|
|
fun remove(item : T) : Boolean
|
|
} |