AvlMap

cats.collections.AvlMap$
See theAvlMap companion class
object AvlMap extends AvlMapInstances

Attributes

Companion
class
Source
Map.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
AvlMap.type

Members list

Value members

Concrete methods

def apply[K, V](kvs: (K, V)*)(implicit K: Order[K]): AvlMap[K, V]

Construct a map containing the given key/value pairs. O(n log n)

Construct a map containing the given key/value pairs. O(n log n)

Attributes

Source
Map.scala
def empty[K, V]: AvlMap[K, V]

Return an empty map.

Return an empty map.

Attributes

Source
Map.scala

Implicits

Implicits

implicit def toShow[K, V](implicit sk: Show[K], sv: Show[V]): Show[AvlMap[K, V]]

Attributes

Source
Map.scala

Inherited implicits

implicit def eqMap[K : Eq, V : Eq]: Eq[AvlMap[K, V]]

Attributes

Inherited from:
AvlMapInstances
Source
Map.scala
implicit def flatMapMap[K](implicit K: Order[K]): FlatMap[[_] =>> AvlMap[K, _$10]]

Attributes

Inherited from:
AvlMapInstances
Source
Map.scala