Lookup

object Lookup
Source
__.scala
class java.lang.Object
trait scala.Matchable
class Any

Member

trait Mutable[A, B] extends Lookup[A, B]

Mutable Lookup Collection

Mutable lookup collection provides methods to modify its content

Note. Lookup.Mutable does not extend Collection.Mutable, because it is impossible to reconsile update operations.

Source
__.scala
trait Mutable[A, B] extends Lookup[A, B]

Mutable Lookup Collection

Mutable lookup collection provides methods to modify its content

Note. Lookup.Mutable does not extend Collection.Mutable, because it is impossible to reconsile update operations.

Source
__.scala
abstract class Stable[A, B] extends Lookup[A, B]

Lookup.Stable is an immutable lookup collection

Source
__.scala
abstract class Stable[A, B] extends Lookup[A, B]

Lookup.Stable is an immutable lookup collection

Source
__.scala

Alias

type M[A, B] = Lookup.Mutable[A, B]
Source
__.scala
inline def M: Lookup.Mutable
Source
__.scala

Def

def apply[A, B](v: Stream[(A, B)]): Lookup[A, B]
Source
__.scala
def apply[A, B](vs: (A, B)*): Lookup[A, B]
Source
__.scala
def lazySource[A, B](createFunOpt: A => Opt[B]): Lookup[A, B]
Source
__.scala
@targetName("getVoid")
inline def void[A, B]: Lookup[A, B]

Get void instance

Get void instance

Source
__.scala

Implicit

implicit inline def implicitRequest[A, B](v: VOID): Lookup[A, B]

General void instance request

General void instance request

It is possible to use general request VOID to get void instance of this type, thanks to this implicit conversion.

Source
__.scala