Skip to content

Instantly share code, notes, and snippets.

@joneshf
Last active July 29, 2018 18:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joneshf/b99f5f1f3ea56019e719e5ba2ef2e58d to your computer and use it in GitHub Desktop.
Save joneshf/b99f5f1f3ea56019e719e5ba2ef2e58d to your computer and use it in GitHub Desktop.
module Main where
import Prelude
import Control.Monad.Eff.Console (logShow)
import Data.Bifunctor (lmap)
import Data.Maybe (Maybe(Just, Nothing))
import Data.Tuple (Tuple(Tuple))
import Data.Unfoldable (class Unfoldable, unfoldr)
import TryPureScript (render, withConsole)
unfoldr' ::
forall a b f.
Unfoldable f =>
(b -> Maybe (Tuple a b)) ->
b ->
f (Tuple a b)
unfoldr' f = unfoldr (\x -> map (lmap (flip Tuple x)) (f x))
-- | A Name consists of a first name and a last name
inc :: Int -> Maybe (Tuple String Int)
inc x
| x > 5 = Nothing
| otherwise = Just (Tuple ("val: " <> show x) (x + 1))
main = render =<< withConsole do
logShow (unfoldr inc 0 :: Array String)
logShow (unfoldr' inc 0 :: Array (Tuple String Int))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment