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