Nu

sealed abstract class Nu[F[_]] extends Serializable

Nu is the greatest fixed point of a functor F. It is a computation that can generate a coinductive infinite structure on demand.

In Haskell this can more aptly be expressed as: data Nu g = forall s . Nu (s -> g s) s

Companion:
object
trait Serializable
class Object
trait Matchable
class Any

Type members

Types

type A

Value members

Abstract methods

def a: A
def unfold: Coalgebra[F, A]

Concrete methods

final override def toString: String
Definition Classes
Any