PFix

object PFix
Companion
class
class Object
trait Matchable
class Any

Value members

Concrete methods

def apply[A, B](f: A => B => PartialFunction[A, B]): PFix[A, B]

Creates a new instance from a higher-order function.

Creates a new instance from a higher-order function.

The specified function takes a total function to call a future result function recursively, and returns a partial function handles a value.

def empty[A, B]: PFix[A, B]

Returns an empty partial function.

Returns an empty partial function.

def from[A, B](pf: PartialFunction[A, B]): PFix[A, B]

Creates a new instance from a partial function.

Creates a new instance from a partial function.