Folder

zio.prelude.recursive.Folder
See theFolder companion object
sealed trait Folder[Case[_], A] extends (Case[A]) => A

Attributes

Companion
object
Graph
Supertypes
trait (Case[A]) => A
class Object
trait Matchable
class Any
Self type
Folder[Case, A]

Members list

Value members

Concrete methods

def zip[B](that: Folder[Case, B])(implicit covariant: Covariant[Case]): Folder[Case, (A, B)]

Inherited methods

def andThen[A](g: A => A): Case[A] => A

Attributes

Inherited from:
Function1
def apply(v1: Case[A]): A

Attributes

Inherited from:
Function1
def compose[A](g: A => Case[A]): A => A

Attributes

Inherited from:
Function1
override def toString(): String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
Function1 -> Any
Inherited from:
Function1