Samples of Map functions "contains" and "isNotEmpty"

Co-authored-by: Ilya Gorbunov <ilya.gorbunov@jetbrains.com>
This commit is contained in:
Miguel Serra
2019-12-26 14:39:19 +00:00
committed by Ilya Gorbunov
parent 606b4db48a
commit 61ad32f012
2 changed files with 36 additions and 1 deletions
@@ -180,7 +180,10 @@ internal expect fun mapCapacity(expectedSize: Int): Int
@PublishedApi
internal expect fun checkBuilderCapacity(capacity: Int)
/** Returns `true` if this map is not empty. */
/**
* Returns `true` if this map is not empty.
* @sample samples.collections.Maps.Usage.mapIsNotEmpty
*/
@kotlin.internal.InlineOnly
public inline fun <K, V> Map<out K, V>.isNotEmpty(): Boolean = !isEmpty()
@@ -221,6 +224,8 @@ public inline fun <M, R> M.ifEmpty(defaultValue: () -> R): R where M : Map<*, *>
* Checks if the map contains the given key.
*
* This method allows to use the `x in map` syntax for checking whether an object is contained in the map.
*
* @sample samples.collections.Maps.Usage.containsKey
*/
@kotlin.internal.InlineOnly
public inline operator fun <@kotlin.internal.OnlyInputTypes K, V> Map<out K, V>.contains(key: K): Boolean = containsKey(key)