EmptyMultiMap

Functions

Link copied to clipboard
open override fun containsKey(key: Any?): Boolean

Returns true if this multimap contains a mapping for the specified key.

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun forEach(block: (Any?, Collection<Nothing>?) -> Unit)
Link copied to clipboard
open override fun forEachIndexed(block: (index: Int, Any?, Collection<Nothing>?) -> Unit)
Link copied to clipboard
open operator override fun get(key: Any?): MutableCollection<Nothing>?

Returns the Collection of values to which the specified key is mapped, or null if this multimap contains no mapping for the key.

Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open override fun size(): Int

Gets the total size of all elements within this multimap.

Link copied to clipboard
open override fun toString(): String

Properties

Link copied to clipboard
open override val entries: ImmutableSet<Map.Entry<Any?, Collection<Nothing>>>

Returns a Set view of the mappings contained in this multimap.

Link copied to clipboard
open override val isEmpty: Boolean

Returns true if this multimap contains no key-value pairs.

Link copied to clipboard
open override val keys: ImmutableSet<Any?>

Returns a Set view of the keys contained in this multimap.

Link copied to clipboard
open override val size: Int

Returns the number of key-value pairs in this multimap.

Link copied to clipboard
open override val values: ImmutableSet<Collection<Nothing>>

Returns a Collection view of the values present in this multimap.