aboutsummaryrefslogtreecommitdiff
path: root/Haskell-book/18
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2025-12-11 10:28:11 +0100
committerEugen Wissner <belka@caraus.de>2025-12-11 10:28:11 +0100
commit98329e0a3dd4f78b5d815ac3896272ec70904901 (patch)
tree80f9c56cfe2ac20232358f236d32e84bd683be1b /Haskell-book/18
parent3624c712d72d246f21d4e710cec7c11e052e0326 (diff)
downloadbook-exercises-98329e0a3dd4f78b5d815ac3896272ec70904901.tar.gz
Add remaining haskell book exercises
Diffstat (limited to 'Haskell-book/18')
-rw-r--r--Haskell-book/18/Bind.hs6
-rw-r--r--Haskell-book/18/Functions.hs21
-rw-r--r--Haskell-book/18/Instance/.gitignore3
-rw-r--r--Haskell-book/18/Instance/Setup.hs2
-rw-r--r--Haskell-book/18/Instance/package.yaml26
-rw-r--r--Haskell-book/18/Instance/src/Identity.hs24
-rw-r--r--Haskell-book/18/Instance/src/List.hs44
-rw-r--r--Haskell-book/18/Instance/src/Nope.hs23
-rw-r--r--Haskell-book/18/Instance/src/PhhhbbtttEither.hs38
-rw-r--r--Haskell-book/18/Instance/src/Sum.hs31
-rw-r--r--Haskell-book/18/Instance/stack.yaml66
-rw-r--r--Haskell-book/18/Instance/test/Spec.hs29
12 files changed, 313 insertions, 0 deletions
diff --git a/Haskell-book/18/Bind.hs b/Haskell-book/18/Bind.hs
new file mode 100644
index 0000000..daeaada
--- /dev/null
+++ b/Haskell-book/18/Bind.hs
@@ -0,0 +1,6 @@
+module Bind where
+
+import Control.Monad
+
+bind :: Monad m => (a -> m b) -> m a -> m b
+bind f x = join $ fmap f x
diff --git a/Haskell-book/18/Functions.hs b/Haskell-book/18/Functions.hs
new file mode 100644
index 0000000..841ecbd
--- /dev/null
+++ b/Haskell-book/18/Functions.hs
@@ -0,0 +1,21 @@
+module Functions where
+
+j :: Monad m => m (m a) -> m a
+j = flip (>>=) id
+
+l1 :: Monad m => (a -> b) -> m a -> m b
+l1 = fmap
+
+l2 :: Monad m => (a -> b -> c) -> m a -> m b -> m c
+l2 f xs ys = f <$> xs <*> ys
+
+a :: Monad m => m a -> m (a -> b) -> m b
+a xs f = f <*> xs
+
+meh :: Monad m => [a] -> (a -> m b) -> m [b]
+meh xs f = rec $ fmap f xs
+ where rec [] = return []
+ rec (x:xs) = (:) <$> x <*> (rec xs)
+
+flipType :: Monad m => [m a] -> m [a]
+flipType = flip meh id
diff --git a/Haskell-book/18/Instance/.gitignore b/Haskell-book/18/Instance/.gitignore
new file mode 100644
index 0000000..01698eb
--- /dev/null
+++ b/Haskell-book/18/Instance/.gitignore
@@ -0,0 +1,3 @@
+.stack-work/
+Instance.cabal
+*~ \ No newline at end of file
diff --git a/Haskell-book/18/Instance/Setup.hs b/Haskell-book/18/Instance/Setup.hs
new file mode 100644
index 0000000..9a994af
--- /dev/null
+++ b/Haskell-book/18/Instance/Setup.hs
@@ -0,0 +1,2 @@
+import Distribution.Simple
+main = defaultMain
diff --git a/Haskell-book/18/Instance/package.yaml b/Haskell-book/18/Instance/package.yaml
new file mode 100644
index 0000000..23b61e5
--- /dev/null
+++ b/Haskell-book/18/Instance/package.yaml
@@ -0,0 +1,26 @@
+name: Instance
+version: 0.1.0.0
+github: "githubuser/Instance"
+license: BSD3
+author: "Eugen Wissner"
+maintainer: "belka@caraus.de"
+copyright: "2018 Eugen Wissner"
+
+dependencies:
+- base >= 4.7 && < 5
+- QuickCheck
+- checkers
+
+library:
+ source-dirs: src
+
+tests:
+ Instance-test:
+ main: Spec.hs
+ source-dirs: test
+ ghc-options:
+ - -threaded
+ - -rtsopts
+ - -with-rtsopts=-N
+ dependencies:
+ - Instance
diff --git a/Haskell-book/18/Instance/src/Identity.hs b/Haskell-book/18/Instance/src/Identity.hs
new file mode 100644
index 0000000..13cd1b2
--- /dev/null
+++ b/Haskell-book/18/Instance/src/Identity.hs
@@ -0,0 +1,24 @@
+module Identity where
+
+import Test.QuickCheck
+import Test.QuickCheck.Checkers
+
+newtype Identity a = Identity a
+ deriving (Eq, Ord, Show)
+
+instance Functor Identity where
+ fmap f (Identity x) = Identity $ f x
+
+instance Applicative Identity where
+ pure = Identity
+ (Identity f) <*> x = fmap f x
+
+instance Monad Identity where
+ return = pure
+ (Identity x) >>= f = f x
+
+instance Arbitrary a => Arbitrary (Identity a) where
+ arbitrary = fmap Identity $ arbitrary
+
+instance Eq a => EqProp (Identity a) where
+ (=-=) = eq
diff --git a/Haskell-book/18/Instance/src/List.hs b/Haskell-book/18/Instance/src/List.hs
new file mode 100644
index 0000000..bd3a06b
--- /dev/null
+++ b/Haskell-book/18/Instance/src/List.hs
@@ -0,0 +1,44 @@
+module List where
+
+import Test.QuickCheck
+import Test.QuickCheck.Checkers
+
+data List a =
+ Nil
+ | Cons a (List a)
+ deriving (Eq, Show)
+
+instance Functor List where
+ fmap f Nil = Nil
+ fmap f (Cons x xs) = Cons (f x) (fmap f xs)
+
+append :: List a -> List a -> List a
+append Nil ys = ys
+append (Cons x xs) ys = Cons x $ xs `append` ys
+
+fold :: (a -> b -> b) -> b -> List a -> b
+fold _ b Nil = b
+fold f b (Cons h t) = f h (fold f b t)
+
+concat' :: List (List a) -> List a
+concat' = fold append Nil
+
+flatMap :: (a -> List b) -> List a -> List b
+flatMap f as = concat' $ fmap f as
+
+instance Applicative List where
+ pure f = Cons f Nil
+ Nil <*> _ = Nil
+ _ <*> Nil = Nil
+ f <*> x = flatMap (\f' -> fmap f' x) f
+
+instance Monad List where
+ return = pure
+ x >>= f = concat' $ fmap f x
+
+instance Arbitrary a => Arbitrary (List a) where
+ arbitrary = frequency [(1, pure Nil),
+ (5, Cons <$> arbitrary <*> arbitrary)]
+
+instance Eq a => EqProp (List a) where
+ (=-=) = eq
diff --git a/Haskell-book/18/Instance/src/Nope.hs b/Haskell-book/18/Instance/src/Nope.hs
new file mode 100644
index 0000000..9a7fea1
--- /dev/null
+++ b/Haskell-book/18/Instance/src/Nope.hs
@@ -0,0 +1,23 @@
+module Nope where
+
+import Test.QuickCheck
+import Test.QuickCheck.Checkers
+
+data Nope a = NopeDotJpg deriving (Show, Eq)
+
+instance Functor Nope where
+ fmap _ _ = NopeDotJpg
+
+instance Applicative Nope where
+ pure _ = NopeDotJpg
+ _ <*> _ = NopeDotJpg
+
+instance Monad Nope where
+ return _ = NopeDotJpg
+ _ >>= _ = NopeDotJpg
+
+instance Arbitrary (Nope a) where
+ arbitrary = return NopeDotJpg
+
+instance EqProp (Nope a) where
+ (=-=) = eq
diff --git a/Haskell-book/18/Instance/src/PhhhbbtttEither.hs b/Haskell-book/18/Instance/src/PhhhbbtttEither.hs
new file mode 100644
index 0000000..0fc6acc
--- /dev/null
+++ b/Haskell-book/18/Instance/src/PhhhbbtttEither.hs
@@ -0,0 +1,38 @@
+{-# LANGUAGE NoImplicitPrelude #-}
+module PhhhbbtttEither where
+
+import Prelude ( Monad(..)
+ , Functor(..)
+ , Applicative(..)
+ , Eq(..)
+ , ($)
+ , Show(..) )
+import Test.QuickCheck
+import Test.QuickCheck.Checkers
+
+data PhhhbbtttEither b a =
+ Left a
+ | Right b
+ deriving (Eq, Show)
+
+instance Functor (PhhhbbtttEither b) where
+ fmap f (Right x) = Right x
+ fmap f (Left x) = Left $ f x
+
+instance Applicative (PhhhbbtttEither b) where
+ pure x = Left x
+ Right f <*> _ = Right f
+ Left f <*> x = fmap f x
+
+instance Monad (PhhhbbtttEither b) where
+ return = pure
+ (Right x) >>= f = Right x
+ (Left x) >>= f = f x
+
+instance (Arbitrary a, Arbitrary b) => Arbitrary (PhhhbbtttEither b a) where
+ arbitrary = frequency [ (1, fmap Right arbitrary)
+ , (1, fmap Left arbitrary)
+ ]
+
+instance (Eq a, Eq b) => EqProp (PhhhbbtttEither b a) where
+ (=-=) = eq
diff --git a/Haskell-book/18/Instance/src/Sum.hs b/Haskell-book/18/Instance/src/Sum.hs
new file mode 100644
index 0000000..d51b211
--- /dev/null
+++ b/Haskell-book/18/Instance/src/Sum.hs
@@ -0,0 +1,31 @@
+module Sum where
+
+import Test.QuickCheck
+import Test.QuickCheck.Checkers
+
+data Sum a b =
+ First a
+ | Second b
+ deriving (Eq, Show)
+
+instance Functor (Sum a) where
+ fmap f (First x) = First x
+ fmap f (Second x) = Second $ f x
+
+instance Applicative (Sum a) where
+ pure x = Second x
+ First f <*> _ = First f
+ Second f <*> x = fmap f x
+
+instance Monad (Sum a) where
+ return = pure
+ (First x) >>= f = First x
+ (Second x) >>= f = f x
+
+instance (Arbitrary a, Arbitrary b) => Arbitrary (Sum a b) where
+ arbitrary = frequency [ (1, fmap First arbitrary)
+ , (1, fmap Second arbitrary)
+ ]
+
+instance (Eq a, Eq b) => EqProp (Sum a b) where
+ (=-=) = eq
diff --git a/Haskell-book/18/Instance/stack.yaml b/Haskell-book/18/Instance/stack.yaml
new file mode 100644
index 0000000..97a175f
--- /dev/null
+++ b/Haskell-book/18/Instance/stack.yaml
@@ -0,0 +1,66 @@
+# This file was automatically generated by 'stack init'
+#
+# Some commonly used options have been documented as comments in this file.
+# For advanced use and comprehensive documentation of the format, please see:
+# https://docs.haskellstack.org/en/stable/yaml_configuration/
+
+# Resolver to choose a 'specific' stackage snapshot or a compiler version.
+# A snapshot resolver dictates the compiler version and the set of packages
+# to be used for project dependencies. For example:
+#
+# resolver: lts-3.5
+# resolver: nightly-2015-09-21
+# resolver: ghc-7.10.2
+# resolver: ghcjs-0.1.0_ghc-7.10.2
+# resolver:
+# name: custom-snapshot
+# location: "./custom-snapshot.yaml"
+resolver: lts-10.4
+
+# User packages to be built.
+# Various formats can be used as shown in the example below.
+#
+# packages:
+# - some-directory
+# - https://example.com/foo/bar/baz-0.0.2.tar.gz
+# - location:
+# git: https://github.com/commercialhaskell/stack.git
+# commit: e7b331f14bcffb8367cd58fbfc8b40ec7642100a
+# - location: https://github.com/commercialhaskell/stack/commit/e7b331f14bcffb8367cd58fbfc8b40ec7642100a
+# extra-dep: true
+# subdirs:
+# - auto-update
+# - wai
+#
+# A package marked 'extra-dep: true' will only be built if demanded by a
+# non-dependency (i.e. a user package), and its test suites and benchmarks
+# will not be run. This is useful for tweaking upstream packages.
+packages:
+- .
+# Dependency packages to be pulled from upstream that are not in the resolver
+# (e.g., acme-missiles-0.3)
+# extra-deps: []
+
+# Override default flag values for local packages and extra-deps
+# flags: {}
+
+# Extra package databases containing global packages
+# extra-package-dbs: []
+
+# Control whether we use the GHC we find on the path
+# system-ghc: true
+#
+# Require a specific version of stack, using version ranges
+# require-stack-version: -any # Default
+# require-stack-version: ">=1.6"
+#
+# Override the architecture used by stack, especially useful on Windows
+# arch: i386
+# arch: x86_64
+#
+# Extra directories used by stack for building
+# extra-include-dirs: [/path/to/dir]
+# extra-lib-dirs: [/path/to/dir]
+#
+# Allow a newer minor version of GHC than the snapshot specifies
+# compiler-check: newer-minor \ No newline at end of file
diff --git a/Haskell-book/18/Instance/test/Spec.hs b/Haskell-book/18/Instance/test/Spec.hs
new file mode 100644
index 0000000..ea250fc
--- /dev/null
+++ b/Haskell-book/18/Instance/test/Spec.hs
@@ -0,0 +1,29 @@
+import Sum
+import Nope
+import qualified PhhhbbtttEither as Phhhbbttt
+import Identity
+import List
+import Test.QuickCheck.Checkers
+import Test.QuickCheck.Classes
+
+main :: IO ()
+main = do
+ quickBatch $ functor $ (First (1, 2, 3) :: Sum (Int, Int, Int) (Int, Int, Int))
+ quickBatch $ applicative $ (First (1, 2, 3) :: Sum (Int, Int, Int) (Int, Int, Int))
+ quickBatch $ monad $ (First (1, 2, 3) :: Sum (Int, Int, Int) (Int, Int, Int))
+
+ quickBatch $ functor $ (NopeDotJpg :: Nope (Int, Int, Int))
+ quickBatch $ applicative $ (NopeDotJpg :: Nope (Int, Int, Int))
+ quickBatch $ monad $ (NopeDotJpg :: Nope (Int, Int, Int))
+
+ quickBatch $ functor $ (Phhhbbttt.Left (1, 2, 3) :: Phhhbbttt.PhhhbbtttEither (Int, Int, Int) (Int, Int, Int))
+ quickBatch $ applicative $ (Phhhbbttt.Left (1, 2, 3) :: Phhhbbttt.PhhhbbtttEither (Int, Int, Int) (Int, Int, Int))
+ quickBatch $ monad $ (Phhhbbttt.Left (1, 2, 3) :: Phhhbbttt.PhhhbbtttEither (Int, Int, Int) (Int, Int, Int))
+
+ quickBatch $ functor $ (Identity (1, 2, 3) :: Identity (Int, Int, Int))
+ quickBatch $ applicative $ (Identity (1, 2, 3) :: Identity (Int, Int, Int))
+ quickBatch $ monad $ (Identity (1, 2, 3) :: Identity (Int, Int, Int))
+
+ quickBatch $ functor (Cons (1 :: Integer, 2 :: Integer, 3 :: Integer) Nil)
+ quickBatch $ applicative (Cons (1 :: Integer, 2 :: Integer, 3 :: Integer) Nil)
+ quickBatch $ monad (Cons (1 :: Integer, 2 :: Integer, 3 :: Integer) Nil)