Combinable

org.scalactic.Accumulation.Combinable
trait Combinable[G, ERR, COLL[_]]

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.

Attributes

Source
Accumulation.scala
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Abstract methods

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.

Attributes

Source
Accumulation.scala