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.
getOutputVectorSize :: MonadIO m => OutputVector -> m CSizegi-gio GI.Gio.Structs.OutputVector Get the value of the “size” field. When overloading is enabled, this is equivalent to
get outputVector #size
newZeroOutputVector :: MonadIO m => m OutputVectorgi-gio GI.Gio.Structs.OutputVector Construct a OutputVector struct initialized to zero.
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 ]
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 ]
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
encodeVector :: (Serialise a, Vector v a) => v a -> Encodingserialise Codec.Serialise.Class Generic encoder for vectors. Its intended use is to allow easy definition of Serialise instances for custom vector
initializationVector :: IV k -> {-# UNPACK #-} !ByteStringcrypto-api Crypto.Types No documentation available.
colVector :: Vector a -> Matrix amatrix Data.Matrix O(1). Represent a vector as a one column matrix.
getMatrixAsVector :: Matrix a -> Vector amatrix 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.
rowVector :: Vector a -> Matrix amatrix Data.Matrix O(1). Represent a vector as a one row matrix.