|
Scala example source code file (Forall.scala)
The Forall.scala Scala example source codepackage scalaz /** A universally quantified value */ trait Forall[P[_]] { self => def apply[A]: P[A] /** `Forall` is an endofunctor in an endofunctor category */ def map[Q[_]](f: P ~> Q) = new Forall[Q] { def apply[A]: Q[A] = f(self.apply) } } object Forall extends Foralls trait Foralls { /** Universal quantification by doubly negating an existential. */ type Not[A] = A => Nothing type DNE[P[_]] = Not[P[A]] forSome {type A} type CPS[P[_]] = Not[DNE[P]] /** Construct a universal quantifier by continuation-passing. */ def apply[P[_]](p: CPS[P]): Forall[P] = new Forall[P] { def apply[A]: P[A] = { case class Control(arg: P[A]) extends Throwable try { p((arg: P[A]) => throw new Control(arg)) } catch { case Control(arg) => arg } } } } Other Scala examples (source code examples)Here is a short list of links related to this Scala Forall.scala source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.