Maintainer | hapytexeu+gh@gmail.com |
---|---|
Stability | experimental |
Portability | POSIX |
Safe Haskell | Safe |
Language | Haskell2010 |
Unicode has 2-by-2 blocks, this module aims to make it more convenient to render such blocks.
Datastructures to store the state of the frame.
A data type that determines the state of the row in a block. it determines the left and the right part of the row of the block.
Instances
Functor Row Source # | |
Applicative Row Source # | |
Foldable Row Source # | |
Defined in Data.Char.Block fold :: Monoid m => Row m -> m # foldMap :: Monoid m => (a -> m) -> Row a -> m # foldr :: (a -> b -> b) -> b -> Row a -> b # foldr' :: (a -> b -> b) -> b -> Row a -> b # foldl :: (b -> a -> b) -> b -> Row a -> b # foldl' :: (b -> a -> b) -> b -> Row a -> b # foldr1 :: (a -> a -> a) -> Row a -> a # foldl1 :: (a -> a -> a) -> Row a -> a # elem :: Eq a => a -> Row a -> Bool # maximum :: Ord a => Row a -> a # | |
Traversable Row Source # | |
Eq a => Eq (Row a) Source # | |
Ord a => Ord (Row a) Source # | |
Read a => Read (Row a) Source # | |
Show a => Show (Row a) Source # | |
Arbitrary a => Arbitrary (Row a) Source # | |
A data type that determines the state of the four subparts of the block.
Instances
Functor Block Source # | |
Applicative Block Source # | |
Foldable Block Source # | |
Defined in Data.Char.Block fold :: Monoid m => Block m -> m # foldMap :: Monoid m => (a -> m) -> Block a -> m # foldr :: (a -> b -> b) -> b -> Block a -> b # foldr' :: (a -> b -> b) -> b -> Block a -> b # foldl :: (b -> a -> b) -> b -> Block a -> b # foldl' :: (b -> a -> b) -> b -> Block a -> b # foldr1 :: (a -> a -> a) -> Block a -> a # foldl1 :: (a -> a -> a) -> Block a -> a # elem :: Eq a => a -> Block a -> Bool # maximum :: Ord a => Block a -> a # minimum :: Ord a => Block a -> a # | |
Traversable Block Source # | |
Eq a => Eq (Block a) Source # | |
Ord a => Ord (Block a) Source # | |
Read a => Read (Block a) Source # | |
Show a => Show (Block a) Source # | |
Arbitrary a => Arbitrary (Block a) Source # | |