package decorators
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- decorators
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- class BitSetDecorator[+C <: BitSet with BitSetOps[C]] extends AnyRef
- class IterableDecorator[C, I <: IsIterable[C]] extends AnyRef
- final class IteratorDecorator[A] extends AnyVal
Enriches Iterator with additional methods.
- class MapDecorator[C, M <: IsMap[C]] extends AnyRef
- class MutableBitSetDecorator extends AnyRef
- class SeqDecorator[C, S <: IsSeq[C]] extends AnyRef
- C
type of the decorated collection (e.g.
List[Int]
,String
, etc.)
Value Members
- implicit def bitSetDecorator[C <: BitSet with BitSetOps[C]](bs: C): BitSetDecorator[C]
- implicit def iterableDecorator[C](coll: C)(implicit it: IsIterable[C]): IterableDecorator[C, it.type]
- implicit def iteratorDecorator[A](it: Iterator[A]): IteratorDecorator[A]
- implicit def mapDecorator[C](coll: C)(implicit map: IsMap[C]): MapDecorator[C, map.type]
- implicit def mutableBitSetDecorator(bs: mutable.BitSet): MutableBitSetDecorator
- implicit def seqDecorator[C](coll: C)(implicit seq: IsSeq[C]): SeqDecorator[C, seq.type]
- object BitSetDecorator
- object View
Views used by decorators