Hoogle Search

Within LTS Haskell 24.40 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. Push :: a -> BufferCommand a

    essence-of-live-coding LiveCoding.Cell.Util

    Add an a to the buffer.

  2. data ParametrisedHandle p (m :: Type -> Type) h

    essence-of-live-coding LiveCoding.Handle

    Generalisation of Handle carrying an additional parameter which may change at runtime. Like in a Handle, the h value of a ParametrisedHandle is preserved through live coding reloads. Additionally, the parameter p value can be adjusted, and triggers a destruction and reinitialisation whenever it changes.

  3. ParametrisedHandle :: (p -> m h) -> (p -> p -> h -> m h) -> (p -> h -> m ()) -> ParametrisedHandle p (m :: Type -> Type) h

    essence-of-live-coding LiveCoding.Handle

    No documentation available.

  4. type Parser = ParserT PureMode

    flatparse FlatParse.Basic

    The type of pure parsers.

  5. type ParserIO = ParserT IOMode

    flatparse FlatParse.Basic

    The type of parsers which can embed IO actions.

  6. type ParserST s = ParserT STMode s

    flatparse FlatParse.Basic

    The type of parsers which can embed ST actions.

  7. newtype ParserT (st :: ZeroBitType) e a

    flatparse FlatParse.Basic

    ParserT st e a is a parser with a state token type st, an error type e and a return type a. The different state token types support different embedded effects; see Parser, ParserIO and ParserST below.

  8. ParserT :: (ForeignPtrContents -> Addr# -> Addr# -> st -> Res# st e a) -> ParserT (st :: ZeroBitType) e a

    flatparse FlatParse.Basic

    No documentation available.

  9. newtype Pos

    flatparse FlatParse.Basic

    Byte offset counted backwards from the end of the buffer. Note: the Ord instance for Pos considers the earlier positions to be smaller.

  10. Pos :: Int -> Pos

    flatparse FlatParse.Basic

    No documentation available.

Page 498 of many | Previous | Next