Hoogle Search

Within LTS Haskell 24.31 (ghc-9.10.3)

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

  1. getMatrixAsVector :: Matrix a -> Vector a

    matrix Data.Matrix

    O(rows*cols). Transform a Matrix to a Vector of size rows*cols. This is equivalent to get all the rows of the matrix using getRow and then append them, but far more efficient.

  2. rowVector :: Vector a -> Matrix a

    matrix Data.Matrix

    O(1). Represent a vector as a one row matrix.

  3. genericGetVector :: (Vector v a, Binary a) => Get (v a)

    vector-binary-instances Data.Vector.Binary

    Generic function for vector deserialization.

  4. genericGetVectorWith :: Vector v a => Get Int -> Get a -> Get (v a)

    vector-binary-instances Data.Vector.Binary

    Deserialize vector using custom parsers.

  5. genericPutVector :: (Vector v a, Binary a) => v a -> Put

    vector-binary-instances Data.Vector.Binary

    Generic put for anything in the G.Vector class.

  6. genericPutVectorWith :: Vector v a => (Int -> Put) -> (a -> Put) -> v a -> Put

    vector-binary-instances Data.Vector.Binary

    Generic put for anything in the G.Vector class which uses custom encoders.

  7. data MVector (v :: Type -> Type -> Type) (n :: Nat) s a

    vector-sized Data.Vector.Generic.Mutable.Sized

    A wrapper to tag mutable vectors with a type level length. Be careful when using the constructor here to not construct sized vectors which have a different length than that specified in the type parameter!

  8. newtype MVector (v :: Type -> Type -> Type) (n :: Nat) s a

    vector-sized Data.Vector.Generic.Mutable.Sized.Internal

    A wrapper to tag mutable vectors with a type level length. Be careful when using the constructor here to not construct sized vectors which have a different length than that specified in the type parameter!

  9. MVector :: v s a -> MVector (v :: Type -> Type -> Type) (n :: Nat) s a

    vector-sized Data.Vector.Generic.Mutable.Sized.Internal

    No documentation available.

  10. data BuildVector (n :: Nat) a

    vector-sized Data.Vector.Generic.Sized

    No documentation available.

Page 55 of many | Previous | Next