class Options
<init> |
Options(map: Map<String, Any?>) |
map |
val map: Map<String, Any> |
get |
fun get(k: String): Any
|
has |
fun has(k: String): Boolean |
isEmpty |
fun isEmpty(): Boolean |
plus |
operator fun plus(other: Options): Options |
union |
fun union(other: Options): Options |
empty |
fun empty(): Options |
of |
fun of(pair: Pair<String, Any?>): Options fun of(vararg pairs: Pair<String, Any?>): Options
|