Created
November 24, 2015 19:16
-
-
Save paf31/15800b8a1cd01368c012 to your computer and use it in GitHub Desktop.
Profunctor-based Traversable
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Main where | |
import Prelude | |
import Data.Maybe | |
import Data.Either | |
import Data.Tuple | |
import Data.List | |
import Data.Profunctor | |
import Data.Profunctor.Strong | |
import Data.Profunctor.Choice | |
class (Strong p, Choice p) <= Both p where | |
both :: forall a b c d. p a b -> p c d -> p (Tuple a c) (Tuple b d) | |
class (Both p) <= None p where | |
none :: forall a. p a a | |
type Traversal a b c d = forall p. (None p) => p a b -> p c d | |
class Traversable t where | |
traverse :: forall a b. Traversal a b (t a) (t b) | |
instance traverseMaybe :: Traversable Maybe where | |
traverse = dimap (maybe (Left unit) Right) (either (const Nothing) Just) <<< right | |
instance traverseEither :: Traversable (Either a) where | |
traverse = right | |
instance traverseTuple :: Traversable (Tuple a) where | |
traverse = second | |
instance traverseList :: Traversable List where | |
traverse pab = dimap uncons (maybe Nil (uncurry Cons)) (traverse (both pab (traverse pab))) | |
where | |
uncons Nil = Nothing | |
uncons (Cons x xs) = Just (Tuple x xs) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Also you don't seem to make use of
none :: None p => p a a
anywhere?