Object/Trait

org.atnos.origami

FoldCreation

Related Docs: trait FoldCreation | package origami

Permalink

object FoldCreation extends FoldCreation

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FoldCreation
  2. FoldCreation
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def bracket[M[_], A, C](open: M[C])(step: (C, A) ⇒ M[C])(close: (C) ⇒ M[Unit])(implicit m: MonadError[M, Throwable]): Fold[M, A, Unit]

    Permalink

    returns

    a fold with just an open action and a close action which is always executed even in case of a failure during folding

    Definition Classes
    FoldCreation
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. def fromFoldLeft[A, B](b: B)(f: (B, A) ⇒ B): FoldId[A, B] { type S = B }

    Permalink

    returns

    a fold from arguments of a fold left

    Definition Classes
    FoldCreation
  11. def fromMonoid[A](implicit arg0: Monoid[A]): FoldId[A, A] { type S = A }

    Permalink

    returns

    a fold which uses a Monoid to accumulate elements

    Definition Classes
    FoldCreation
  12. def fromMonoidMap[A, O](f: (A) ⇒ O)(implicit arg0: Monoid[O]): FoldId[A, O] { type S = O }

    Permalink

    returns

    a fold which uses a Monoid to accumulate elements

    Definition Classes
    FoldCreation
  13. def fromMonoidMapM[M[_], A, O](f: (A) ⇒ M[O])(implicit arg0: Monad[M], arg1: Monoid[O]): Fold[M, A, O] { ... /* 2 definitions in type refinement */ }

    Permalink

    returns

    a fold which uses a Monoid to accumulate elements effectfully

    Definition Classes
    FoldCreation
  14. def fromSink[M[_], A](action: (A) ⇒ M[Unit])(implicit m: Monad[M]): Fold[M, A, Unit]

    Permalink

    returns

    a fold sinking all the values to a unit action

    Definition Classes
    FoldCreation
  15. def fromStart[M[_], A, S1](action: M[S1])(implicit m: Monad[M]): Fold[M, A, S1] { ... /* 2 definitions in type refinement */ }

    Permalink

    returns

    a fold with just a start action

    Definition Classes
    FoldCreation
  16. def fromStateEval[A, B, C](state: (A) ⇒ State[B, C])(init: B): Fold[[A]A, A, Option[C]] { ... /* 2 definitions in type refinement */ }

    Permalink

    returns

    a fold for the evaluation of a State object

    Definition Classes
    FoldCreation
  17. def fromStateExec[A, B, C](state: (A) ⇒ State[B, C])(init: B): Fold[[A]A, A, B] { ... /* 2 definitions in type refinement */ }

    Permalink

    returns

    a fold for the execution of a State object

    Definition Classes
    FoldCreation
  18. def fromStateRun[A, B, C](state: (A) ⇒ State[B, C])(init: B): FoldId[A, (B, Option[C])] { ... /* 3 definitions in type refinement */ }

    Permalink

    returns

    a fold from running a State object

    Definition Classes
    FoldCreation
  19. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  20. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  21. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  22. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  23. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  24. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  25. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  26. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  27. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from FoldCreation

Inherited from AnyRef

Inherited from Any

Ungrouped