trifecta-1.4.2: A modern parser combinator library with convenient diagnostics

Portabilitynon-portable
Stabilityexperimental
MaintainerEdward Kmett <ekmett@gmail.com>
Safe HaskellSafe-Inferred

Text.Trifecta.Util.It

Description

harder, better, faster, stronger...

Synopsis

Documentation

data It r a Source

Constructors

Pure a 
It a (r -> It r a) 

Instances

Monad (It r) 
Functor (It r) 
Applicative (It r) 
Comonad (It r)

It is a cofree comonad

ComonadApply (It r) 
Show a => Show (It r a) 

needIt :: a -> (r -> Maybe a) -> It r aSource

wantIt :: a -> (r -> (#Bool, a#)) -> It r aSource

simplifyIt :: It r a -> r -> It r aSource

runIt :: (a -> o) -> (a -> (r -> It r a) -> o) -> It r a -> oSource

fillIt :: r -> (Delta -> ByteString -> r) -> Delta -> It Rope rSource

Given a position, go there, and grab the text forward from that point

rewindIt :: Delta -> It Rope (Maybe ByteString)Source

Return the text of the line that contains a given position