Hoogle Search

Within LTS Haskell 24.4 (ghc-9.10.2)

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

  1. runUpdateReturningList :: (MonadBeamUpdateReturning be m, Beamable table, Projectible be (table (QExpr be ())), FromBackendRow be (table Identity)) => SqlUpdate be table -> m [table Identity]

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

    No documentation available.

  2. quantifierListE :: IsSql92ExpressionSyntax expr => [expr] -> expr

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

    No documentation available.

  3. runSelectReturningList :: (MonadBeam be m, BeamSqlBackend be, FromBackendRow be a) => SqlSelect be a -> m [a]

    beam-core Database.Beam.Query

    Run a SqlSelect in a MonadBeam and get the results as a list

  4. conduitPutList :: forall (m :: Type -> Type) . Monad m => ConduitT Put [ByteString] m ()

    binary-conduit Data.Conduit.Serialization.Binary

    Vectorized variant of conduitPut returning list contains all chunks from one element representation

  5. fromList :: (Contiguous arr, Element arr a) => [a] -> arr a

    contiguous Data.Primitive.Contiguous

    Convert a list into an array.

  6. fromListMutable :: forall (arr :: Type -> Type) a m . (Contiguous arr, Element arr a, PrimMonad m) => [a] -> m (Mutable arr (PrimState m) a)

    contiguous Data.Primitive.Contiguous

    Convert a list into a mutable array of the given length.

  7. fromListMutableN :: forall (arr :: Type -> Type) a m . (Contiguous arr, Element arr a, PrimMonad m) => Int -> [a] -> m (Mutable arr (PrimState m) a)

    contiguous Data.Primitive.Contiguous

    Given an Int that is representative of the length of the list, convert the list into a mutable array of the given length. Note: calls error if the given length is incorrect.

  8. fromListN :: (Contiguous arr, Element arr a) => Int -> [a] -> arr a

    contiguous Data.Primitive.Contiguous

    Given an Int that is representative of the length of the list, convert the list into a mutable array of the given length. Note: calls error if the given length is incorrect.

  9. toList :: (Contiguous arr, Element arr a) => arr a -> [a]

    contiguous Data.Primitive.Contiguous

    Convert an array to a list.

  10. toListMutable :: forall (arr :: Type -> Type) a m . (Contiguous arr, Element arr a, PrimMonad m) => Mutable arr (PrimState m) a -> m [a]

    contiguous Data.Primitive.Contiguous

    Convert a mutable array to a list.

Page 124 of many | Previous | Next