xournal-render-0.5: Xournal file renderer

Graphics.Xournal.Render.Type.Hitted

Documentation

data AlterList a b Source

Constructors

Empty 
a :- (AlterList b a) 

Instances

(Show a, Show b) => Show (AlterList a b) 

newtype NotHitted a Source

Constructors

NotHitted 

Fields

unNotHitted :: [a]
 

Instances

Show a => Show (NotHitted a) 

newtype Hitted a Source

Constructors

Hitted 

Fields

unHitted :: [a]
 

Instances

Show a => Show (Hitted a) 

fmapAL :: (a -> c) -> (b -> d) -> AlterList a b -> AlterList c dSource

getA :: AlterList a b -> [a]Source

getB :: AlterList a b -> [b]Source

interleave :: (a -> c) -> (b -> c) -> AlterList a b -> [c]Source