create
@ExperimentalSince(version = KotoolsTypesVersion.V4_5_0)
Creates a NotEmptyMap containing all the entries of the specified map, or throws an IllegalArgumentException if the map is empty.
Here's an example for calling this function from Kotlin code:
val map: Map<Char, Int> = mapOf('a' to 1, 'b' to 2)
val result: NotEmptyMap<Char, Int> = NotEmptyMap.create(map)
println(result) // Success({a=1, b=2})
Content copied to clipboard
The NotEmptyMap type being an inline value class, this function is not available yet for Java users.
Please note that changes made to the original map will not be reflected on the resulting NotEmptyMap.
val original: MutableMap<Char, Int> =
mutableMapOf('a' to 1, 'b' to 2)
val notEmptyMap: NotEmptyMap<Char, Int> =
NotEmptyMap.create(original)
println(original) // {a=1, b=2}
println(notEmptyMap) // {a=1, b=2}
original.clear()
println(original) // {}
println(notEmptyMap) // {a=1, b=2}
Content copied to clipboard
You can use the NotEmptyMap.Companion.createOrNull function for returning null
instead of throwing an exception in case of invalid map.