Packages

abstract class Validator[F[_]] extends AnyRef

A validator makes it possible to validate sections in a stream.

Source
Validator.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Validator
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Validator()

Abstract Value Members

  1. abstract def validate(stream: Stream[F, Section]): Stream[F, Section]

    Performs validation of the section stream on the fly.

    Performs validation of the section stream on the fly. The sections are returned unchanged if validation succeeds, otherwise the stream fails.