Warning

grackle.Result.Warning
final case class Warning[+T](problems: Type[Problem], value: T) extends Result[T]

Attributes

Source
result.scala
Graph
Supertypes
trait Serializable
trait Product
trait Equals
trait Result[T]
class Object
trait Matchable
class Any
Show all

Members list

Value members

Inherited methods

def ===[TT >: T](that: Result[TT])(implicit TT: Eq[TT]): Boolean

Attributes

Inherited from:
Result
Source
result.scala
def combine[U >: T](that: Result[U])(implicit S: Semigroup[U]): Result[U]

Attributes

Inherited from:
Result
Source
result.scala
final def exists(p: T => Boolean): Boolean

Attributes

Inherited from:
Result
Source
result.scala
def flatMap[U](f: T => Result[U]): Result[U]

Attributes

Inherited from:
Result
Source
result.scala
def fold[U](failure: Type[Problem] => U, success: T => U, warning: (Type[Problem], T) => U, error: Throwable => U): U

Attributes

Inherited from:
Result
Source
result.scala
final def foldLeft[U](u: U)(f: (U, T) => U): U

Attributes

Inherited from:
Result
Source
result.scala
final def foldRight[U](lu: Eval[U])(f: (T, Eval[U]) => Eval[U]): Eval[U]

Attributes

Inherited from:
Result
Source
result.scala
final def forall(p: T => Boolean): Boolean

Attributes

Inherited from:
Result
Source
result.scala
def getOrElse[U >: T](ifNone: => U): U

Attributes

Inherited from:
Result
Source
result.scala

Attributes

Inherited from:
Result
Source
result.scala

Attributes

Inherited from:
Result
Source
result.scala

Attributes

Inherited from:
Result
Source
result.scala
def map[U](f: T => U): Result[U]

Attributes

Inherited from:
Result
Source
result.scala

Attributes

Inherited from:
Product

Attributes

Inherited from:
Product

Attributes

Inherited from:
Result
Source
result.scala
def toOption: Option[T]

Attributes

Inherited from:
Result
Source
result.scala

Attributes

Inherited from:
Result
Source
result.scala
def traverse[F[_], U](f: T => F[U])(implicit F: Applicative[F]): F[Result[U]]

Attributes

Inherited from:
Result
Source
result.scala
def withProblems(problems: Type[Problem]): Result[T]

Attributes

Inherited from:
Result
Source
result.scala