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. array_oidvectorOid :: Oid

    postgresql-simple Database.PostgreSQL.Simple.TypeInfo.Static

    No documentation available.

  2. int2vector :: TypeInfo

    postgresql-simple Database.PostgreSQL.Simple.TypeInfo.Static

    No documentation available.

  3. int2vectorOid :: Oid

    postgresql-simple Database.PostgreSQL.Simple.TypeInfo.Static

    No documentation available.

  4. oidvector :: TypeInfo

    postgresql-simple Database.PostgreSQL.Simple.TypeInfo.Static

    No documentation available.

  5. oidvectorOid :: Oid

    postgresql-simple Database.PostgreSQL.Simple.TypeInfo.Static

    No documentation available.

  6. shrinkBenchVector :: NFData a => Vector a -> String -> (a -> [a]) -> Benchmark

    genvalidity-criterion Data.GenValidity.Criterion

    Benchmark for the time it takes to shrink to the first ten shrunk versions using a given shrinking function and a given vector of values

  7. dequeToVector :: forall v' a (v :: Type -> Type -> Type) m . (Vector v' a, MVector v a, PrimMonad m) => Deque v (PrimState m) a -> m (v' a)

    rio RIO.Deque

    Convert to an immutable vector of any type. If resulting pure vector corresponds to the mutable one used by the Deque, it will be more efficient to use freezeDeque instead.

    Example

    >>> :set -XTypeApplications
    
    >>> import qualified RIO.Vector.Unboxed as U
    
    >>> import qualified RIO.Vector.Storable as S
    
    >>> d <- newDeque @U.MVector @Int
    
    >>> mapM_ (pushFrontDeque d) [0..10]
    
    >>> dequeToVector @S.Vector d
    [10,9,8,7,6,5,4,3,2,1,0]
    

  8. type GVector = Vector

    rio RIO.Prelude.Types

    No documentation available.

  9. type SVector = Vector

    rio RIO.Prelude.Types

    No documentation available.

  10. type UVector = Vector

    rio RIO.Prelude.Types

    No documentation available.

Page 48 of many | Previous | Next