ConcurrentMap

zio.concurrent.ConcurrentMap
See theConcurrentMap companion class
object ConcurrentMap

Attributes

Companion
class
Graph
Supertypes
class Object
trait Matchable
class Any
Self type

Members list

Value members

Concrete methods

def empty[K, V]: UIO[ConcurrentMap[K, V]]

Makes an empty ConcurrentMap.

Makes an empty ConcurrentMap.

Attributes

def fromIterable[K, V](pairs: Iterable[(K, V)]): UIO[ConcurrentMap[K, V]]

Makes a new ConcurrentMap initialized with provided collection of key-value pairs.

Makes a new ConcurrentMap initialized with provided collection of key-value pairs.

Attributes

def make[K, V](pairs: (K, V)*): UIO[ConcurrentMap[K, V]]

Makes a new ConcurrentMap initialized with provided key-value pairs.

Makes a new ConcurrentMap initialized with provided key-value pairs.

Attributes