Lookup.Stable

abstract class Stable[A, B] extends Lookup[A, B]

Lookup.Stable is an immutable lookup collection

Source
__.scala
trait Lookup[Lookup.Stable.A, Lookup.Stable.B]
trait Collection[Lookup.Stable.B]
trait Able.Size
trait Able.Stream[Lookup.Stable.B]
class java.lang.Object
trait scala.Matchable
class Any
class Byte.G.Lookup.Stable[Byte.G.Lookup.Stable.A, Byte.G.Lookup.Stable.B]
class Char.G.Lookup.Stable[Char.G.Lookup.Stable.A, Char.G.Lookup.Stable.B]
class Int.G.Lookup.Stable[Int.G.Lookup.Stable.A, Int.G.Lookup.Stable.B]
class Long.G.Lookup.Stable[Long.G.Lookup.Stable.A, Long.G.Lookup.Stable.B]
class Short.G.Lookup.Stable[Short.G.Lookup.Stable.A, Short.G.Lookup.Stable.B]

Def

inline def +(key: A, v: B): this.type

Alias for join

Alias for join

Creates a new Stable with given key/value joined

Source
__.scala
inline def ++(v: Stream[(A, B)]): this.type

Alias for joinAll

Alias for joinAll

Creates a new Stable with all given key/value pairs joined

Source
__.scala
def get(v: A): B

Element by key

Element by key

Returns element associated with the given key

Note. This operation will fail, if value is not found. Thus, use safer getOpt in most cases

Inherited from
Lookup
Source
__.scala
def getOpt(key: A): Opt[B]

Optional element by key

Optional element by key

Optionally returns element associated with the given key

Inherited from
Lookup
Source
__.scala
def getStream(keys: Stream[A]): Stream[B]

Multi key lookup

Multi key lookup

Returns a stream of values for given stream of keys.

Note: There may be less values, than keys. Keys with no assosiated values are ignored.

Inherited from
Lookup
Source
__.scala
def join(key: A, v: B): this.type

Join key/value association

Join key/value association

Creates a new Stable with given key/value joined

Source
__.scala
def joinAll(v: Stream[(A, B)]): this.type

Join multiple key/value associations

Join multiple key/value associations

Creates a new Stable with all given key/value pairs joined

Source
__.scala
def keyStream: Stream[A]

Key stream

Key stream

Returns a Stream of all keys for this Lookup

Inherited from
Lookup
Source
__.scala
def pairStream: Stream[(A, B)]

Key/value pair stream

Key/value pair stream

Returns a Stream of all key/value pairs for this Lookup

Inherited from
Lookup
Source
__.scala
def size: Int
Inherited from
Collection
Source
__.scala
def stream: Stream[B]

Value stream

Value stream

Returns a Stream of all values for this Lookup

Inherited from
Lookup
Source
__.scala