Packages

final case class Recursive[Case[+_]](caseValue: Case[Recursive[Case]]) extends Product with Serializable

Self Type
Recursive[Case]
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Recursive
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Recursive(caseValue: Case[Recursive[Case]])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. val caseValue: Case[Recursive[Case]]
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  9. def fold[Z](f: (Case[Z]) => Z)(implicit covariant: Covariant[Case]): Z
  10. def foldAnnotated[Z](f: (Case[Annotated[Case, Z]]) => Z)(implicit covariant: Covariant[Case]): Z

    Folds over the recursive data structure to reduce it to a summary value, providing access to the recursive structure annotated with the current previous summary values in each step of the fold.

  11. def foldDown[Z](z: Z)(f: (Z, Recursive[Case]) => Z)(implicit foreach: ForEach[Case]): Z
  12. def foldDownSome[Z](z: Z)(pf: PartialFunction[(Z, Recursive[Case]), Z])(implicit foreach: ForEach[Case]): Z
  13. def foldM[F[+_], Z](f: (Case[Z]) => F[Z])(implicit arg0: AssociativeFlatten[F], arg1: Covariant[F], arg2: IdentityBoth[F], foreach: ForEach[Case]): F[Z]
  14. def foldManaged[R, E, Z](f: (Case[Z]) => ZManaged[R, E, Z])(implicit foreach: ForEach[Case]): ZManaged[R, E, Z]
  15. def foldPure[W, S, R, E, Z](f: (Case[Z]) => ZPure[W, S, S, R, E, Z])(implicit foreach: ForEach[Case]): ZPure[W, S, S, R, E, Z]
  16. def foldRecursive[Z](f: (Case[(Recursive[Case], Z)]) => Z)(implicit covariant: Covariant[Case]): Z
  17. def foldSTM[R, E, Z](f: (Case[Z]) => ZSTM[R, E, Z])(implicit foreach: ForEach[Case]): ZSTM[R, E, Z]
  18. def foldUp[Z](z: Z)(f: (Z, Recursive[Case]) => Z)(implicit foreach: ForEach[Case]): Z
  19. def foldUpSome[Z](z: Z)(pf: PartialFunction[(Z, Recursive[Case]), Z])(implicit foreach: ForEach[Case]): Z
  20. def foldValidation[W, E, Z](f: (Case[Z]) => ZValidation[W, E, Z])(implicit foreach: ForEach[Case]): ZValidation[W, E, Z]
  21. def foldZIO[R, E, Z](f: (Case[Z]) => ZIO[R, E, Z])(implicit foreach: ForEach[Case]): ZIO[R, E, Z]
  22. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  23. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  26. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  27. def productElementNames: Iterator[String]
    Definition Classes
    Product
  28. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  29. def transformDown(f: (Recursive[Case]) => Recursive[Case])(implicit covariant: Covariant[Case]): Recursive[Case]
  30. def transformDownSome(pf: PartialFunction[Recursive[Case], Recursive[Case]])(implicit covariant: Covariant[Case]): Recursive[Case]
  31. def transformUp(f: (Recursive[Case]) => Recursive[Case])(implicit covariant: Covariant[Case]): Recursive[Case]
  32. def transformUpSome(pf: PartialFunction[Recursive[Case], Recursive[Case]])(implicit covariant: Covariant[Case]): Recursive[Case]
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped