EntryEvent

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

Inheritors

Types

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

Properties

Link copied to clipboard
abstract val value: V

Functions

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