blob: 95eb05d2456a3ed9d93107fde0248c6759228e24 [file] [log] [blame]
open class IMutableSet<T> : ISet<T>, IMutableIterable<T> {
fun add(item : T) : Boolean
fun remove(item : T) : Boolean
}