1 {-# LANGUAGE DeriveGeneric #-}
2 {-# LANGUAGE NoMonomorphismRestriction #-}
3 {-# OPTIONS_GHC -Wno-missing-signatures #-}
5 module Examples.Ex01 where
8 import Symantic.Classes (SumFunctor (..), adt)
12 -- | A convenient data-type to avoid using 'Either's and Tuples.
18 deriving (Eq, Show, Generic)
20 -- | Polymorphic expression describing the website,
21 -- to be instantiated to the various interpreters.
22 -- NoMonomorphismRestriction is used to avoid specifying manually
23 -- the inferred symantic classes.
25 -- site :: IsoFunctor repr => SumFunctor repr => Slugable repr => repr Site
26 -- Using Generic, 'adt' derives (Iso{a2b, b2a} <%>)
27 -- from the 'Site' algebraic data-type.
29 literalSlug "index.html"
30 <+> literalSlug "about.html"
32 -- <+> captureSlug "user" <. literalSlug "contact.html"
33 -- <+> "post" </> many0 (captureSlug "dir")