NamedMap

kreuzberg.util.NamedMap
See theNamedMap companion object
final case class NamedMap[K, V](underlying: Map[K, Map[String, V]]) extends AnyVal

A Map from some key to some named map.

Attributes

Companion
object
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class AnyVal
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

def +(value: ((K, String), V)): NamedMap[K, V]
def filter(f: (K, String, V) => Boolean): NamedMap[K, V]
def filterKeys(f: K => Boolean): NamedMap[K, V]
def get(key: K, name: String): Option[V]
def size: Int
def values: Iterable[V]
def withValue(key: K, name: String, value: V): NamedMap[K, V]

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product