object Alg
- Source
- Alg.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Alg
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- final case class Attempt[C, A](fa: Alg[C, A]) extends Alg[C, EitherNec[PositionalError[C], A]] with Product with Serializable
- final case class CursorOver[C, A](cursor: Cursor, fa: Alg[C, A]) extends Alg[C, A] with Product with Serializable
- final case class CycleOver[C, A](name: String, fa: Alg[C, A]) extends Alg[C, A] with Product with Serializable
- final case class FlatMap[C, A, B](fa: Alg[C, A], f: (A) => Alg[C, B]) extends Alg[C, B] with Product with Serializable
- trait Ops[C] extends AnyRef
- final case class ParAp[C, A, B](fa: Alg[C, A], fab: Alg[C, (A) => B]) extends Alg[C, B] with Product with Serializable
- final case class Pure[A](a: A) extends Alg[Nothing, A] with Product with Serializable
- final case class RaiseError[C](pe: NonEmptyChain[PositionalError[C]]) extends Alg[C, Nothing] with Product with Serializable
- final case class UseVariable(name: String) extends Alg[Nothing, Unit] with Product with Serializable
- final case class UsedVariables() extends Alg[Nothing, Set[String]] with Product with Serializable
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- implicit def monadErrorForPreparationAlg[C]: MonadError[[β$0$]Alg[C, β$0$], NonEmptyChain[PositionalError[C]]]
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- implicit def parallelForPreparationAlg[C]: Parallel[[β$2$]Alg[C, β$2$]]
- def run[C, A](fa: Alg[C, A]): EitherNec[PositionalError[C], A]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- case object CursorAsk extends Alg[Nothing, Cursor] with Product with Serializable
- case object CycleAsk extends Alg[Nothing, Set[String]] with Product with Serializable
- case object NextId extends Alg[Nothing, Int] with Product with Serializable
- object Ops