11 lines
178 B
Kotlin
11 lines
178 B
Kotlin
namespace std
|
|
|
|
namespace util {
|
|
import java.util.*
|
|
|
|
val Collection<*>.size : Int
|
|
get() = size()
|
|
|
|
val Collection<*>.empty : Boolean
|
|
get() = isEmpty()
|
|
} |