EntryEvent

sealed interface EntryEvent<out V : Any> : SetEvent<V> (source)

Mutation event for a specific entry.

Inheritors

Types

Link copied to clipboard
class Insert<out V : Any>(val value: V) : SetEvent.EntryEvent<V>

An event indicating a value has been inserted into the set.

Link copied to clipboard
class Removed<out V : Any>(val value: V) : SetEvent.EntryEvent<V>

An event indicating a value has been removed from the set.

Properties

Link copied to clipboard
abstract val value: V

Functions

Link copied to clipboard
open operator fun component1(): V