Hoogle Search

Within LTS Haskell 24.57 (ghc-9.10.3)

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

  1. insertManyRight :: [Node] -> Cursor -> Cursor

    xmlhtml Text.XmlHtml.Cursor

    Inserts a list of new Nodes to the right of the current position.

  2. checkpointMany :: (MonadCatch m, HasCallStack) => [Annotation] -> m a -> m a

    annotated-exception Control.Exception.Annotated

    Add the list of Annotation to any exception thrown in the following action.

  3. checkpointMany :: (MonadUnliftIO m, HasCallStack) => [Annotation] -> m a -> m a

    annotated-exception Control.Exception.Annotated.UnliftIO

    Like checkpointMany, but uses MonadUnliftIO instead of MonadCatch.

  4. data Many state x

    automaton Data.Stream.Internal

    Internal state of many and some

  5. runReturningMany :: (MonadBeam be m, FromBackendRow be x) => BeamSqlBackendSyntax be -> (m (Maybe x) -> m a) -> m a

    beam-core Database.Beam

    Run a query determined by the given syntax, providing an action that will be called to consume the results from the database (if any). The action will get a reader action that can be used to fetch the next row. When this reader action returns Nothing, there are no rows left to consume. When the reader action returns, the database result is freed.

  6. runReturningMany :: (MonadBeam be m, FromBackendRow be x) => BeamSqlBackendSyntax be -> (m (Maybe x) -> m a) -> m a

    beam-core Database.Beam.Backend.SQL

    Run a query determined by the given syntax, providing an action that will be called to consume the results from the database (if any). The action will get a reader action that can be used to fetch the next row. When this reader action returns Nothing, there are no rows left to consume. When the reader action returns, the database result is freed.

  7. ComparatorQuantifierAny :: ComparatorQuantifier

    beam-core Database.Beam.Backend.SQL.AST

    No documentation available.

  8. quantifyOverAny :: IsSql92QuantifierSyntax quantifier => quantifier

    beam-core Database.Beam.Backend.SQL.SQL92

    No documentation available.

  9. type ManyToMany be (db :: Type -> Type -> Type) (left :: Type -> Type -> Type) (right :: Type -> Type -> Type) = forall s . (BeamSqlBackend be, SqlEq QExpr be s PrimaryKey left QExpr be s, SqlEq QExpr be s PrimaryKey right QExpr be s) => Q be db s left QExpr be s -> Q be db s right QExpr be s -> Q be db s (left QExpr be s, right QExpr be s)

    beam-core Database.Beam.Query

    Convenience type to declare many-to-many relationships. See the manual section on relationships for more information

  10. type ManyToManyThrough be (db :: Type -> Type -> Type) (through :: Type -> Type -> Type) (left :: Type -> Type -> Type) (right :: Type -> Type -> Type) = forall s . (BeamSqlBackend be, SqlEq QExpr be s PrimaryKey left QExpr be s, SqlEq QExpr be s PrimaryKey right QExpr be s) => Q be db s left QExpr be s -> Q be db s right QExpr be s -> Q be db s (through QExpr be s, left QExpr be s, right QExpr be s)

    beam-core Database.Beam.Query

    Convenience type to declare many-to-many relationships with additional data. See the manual section on relationships for more information

Page 177 of many | Previous | Next