Hoogle Search

Within LTS Haskell 24.6 (ghc-9.10.2)

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

  1. isFirstM :: forall (c :: Type -> Type) (n :: (Type -> Type) -> Type -> Type -> Type) tag text . List c => CursorG n c tag text -> ItemM c Bool

    hexpat Text.XML.Expat.Cursor

    Are we at the left end of the the document? (Used for monadic node types.)

  2. isLastM :: forall (c :: Type -> Type) (n :: (Type -> Type) -> Type -> Type -> Type) tag text . List c => CursorG n c tag text -> ItemM c Bool

    hexpat Text.XML.Expat.Cursor

    Are we at the right end of the document? (Used for monadic node types.)

  3. modifyContentListM :: NodeClass n c => (n c tag text -> c (n c tag text)) -> CursorG n c tag text -> ItemM c (Maybe (CursorG n c tag text))

    hexpat Text.XML.Expat.Cursor

    Modify the current content - used for monadic node types.

  4. data FormatAdjustment

    hledger Hledger.Cli.Script

    Whether to left-adjust or zero-pad a field. These are mutually exclusive, with LeftAdjust taking precedence.

  5. lastMay :: [a] -> Maybe a

    hledger Hledger.Cli.Script

    No documentation available.

  6. newListMetatable :: Name -> LuaE e () -> LuaE e ()

    hslua-list HsLua.List

    Pushes the metatable of the given List type, creating it if necessary. The setup operation is run when the metatable did not exists, was created, and is then at the top of the stack. The operation may modify the table but must be balanced, and must leave the stack as it found it.

  7. pushListModule :: LuaError e => LuaE e ()

    hslua-list HsLua.List

    Opens the List module and pushes it to the stack.

  8. lastM :: Monad m => NonEmptyVector a -> m a

    nonempty-vector Data.Vector.NonEmpty

    O(1) Last element of a non-empty vector in a monad. See indexM for an explanation of why this is useful. Note that this function defers to unsafeHeadM since a last element is gauranteed.

    >>> lastM @[] (unsafeFromList [1..10])
    [10]
    

  9. hoistMaybe :: forall (m :: Type -> Type) a . Monad m => Maybe a -> MaybeT m a

    relational-query-HDBC Database.HDBC.Schema.Driver

    Hoist from Maybe context into MaybeT.

  10. newtype WebdriverTestM app a

    sydtest-webdriver Test.Syd.Webdriver

    A monad for webdriver tests. This instantiates the WebDriver class, as well as the IsTest class.

Page 94 of many | Previous | Next