trait PotCollection[K, V] extends AnyRef
Trait defining common functionality for all potential collections. All values inside the collection are
wrapped in Pot[V]
- K
Type of the key
- V
Type of the potential value
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- PotCollection
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Abstract Value Members
- abstract def clear: PotCollection[K, V]
- abstract def get(key: K): Pot[V]
- abstract def iterator: Iterator[(K, Pot[V])]
- abstract def map(f: (K, Pot[V]) ⇒ Pot[V]): PotCollection[K, V]
- abstract def refresh(keys: Iterable[K]): Unit
- abstract def refresh(key: K): Unit
- abstract def remove(key: K): PotCollection[K, V]
- abstract def seq: Iterable[(K, Pot[V])]
- abstract def updated(kvs: Iterable[(K, Pot[V])]): PotCollection[K, V]
- abstract def updated(start: K, values: Iterable[Pot[V]])(implicit num: Numeric[K]): PotCollection[K, V]
- abstract def updated(key: K, value: Pot[V]): PotCollection[K, V]
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def apply(key: K): Pot[V]
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
- def updated(coll: PotCollection[K, V]): PotCollection[K, V]
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()