4 lines
81 B
Kotlin
4 lines
81 B
Kotlin
open class ISet<T> : IIterable<T>, ISized {
|
|
fun contains(item : T) : Boolean
|
|
}
|