org.scalactic.Accumulation

Combinable

trait Combinable[G, ERR, COLL[_]] extends AnyRef

Adds a combined method to “collections” of accumulating Ors via an implicit conversion provided by trait Accumulation.

For more information and examples, see the Using combined section of the main documentation for class Or.

Source
Accumulation.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Combinable
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def combined: Or[COLL[G], Every[ERR]]

    Combines a collection COLL of Ors of type G Or EVERY[ERR] (where EVERY is some subtype of Every) into a single Or of type COLL[G] Or Every[ERR].

    Combines a collection COLL of Ors of type G Or EVERY[ERR] (where EVERY is some subtype of Every) into a single Or of type COLL[G] Or Every[ERR].

    Note: this process implemented by this method is sometimes called a “sequence.”

    For more information and examples, see the Using combined section of the main documentation for class Or.