Hoogle Search

Within LTS Haskell 24.5 (ghc-9.10.2)

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

  1. getOutputVectorSize :: MonadIO m => OutputVector -> m CSize

    gi-gio GI.Gio.Structs.OutputVector

    Get the value of the “size” field. When overloading is enabled, this is equivalent to

    get outputVector #size
    

  2. newZeroOutputVector :: MonadIO m => m OutputVector

    gi-gio GI.Gio.Structs.OutputVector

    Construct a OutputVector struct initialized to zero.

  3. setOutputVectorBuffer :: MonadIO m => OutputVector -> Ptr () -> m ()

    gi-gio GI.Gio.Structs.OutputVector

    Set the value of the “buffer” field. When overloading is enabled, this is equivalent to

    set outputVector [ #buffer := value ]
    

  4. setOutputVectorSize :: MonadIO m => OutputVector -> CSize -> m ()

    gi-gio GI.Gio.Structs.OutputVector

    Set the value of the “size” field. When overloading is enabled, this is equivalent to

    set outputVector [ #size := value ]
    

  5. decodeVector :: (Serialise a, Vector v a) => Decoder s (v a)

    serialise Codec.Serialise.Class

    Generic decoder for vectors. Its intended use is to allow easy definition of Serialise instances for custom vector

  6. encodeVector :: (Serialise a, Vector v a) => v a -> Encoding

    serialise Codec.Serialise.Class

    Generic encoder for vectors. Its intended use is to allow easy definition of Serialise instances for custom vector

  7. initializationVector :: IV k -> {-# UNPACK #-} !ByteString

    crypto-api Crypto.Types

    No documentation available.

  8. colVector :: Vector a -> Matrix a

    matrix Data.Matrix

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

  9. 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.

  10. rowVector :: Vector a -> Matrix a

    matrix Data.Matrix

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

Page 54 of many | Previous | Next