Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

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

  1. package rrb-vector

    Efficient RRB-Vectors An RRB-Vector is an efficient sequence data structure. It supports fast indexing, iteration, concatenation and splitting.

    Comparison with Data.Sequence

    Seq a is a container with a very similar API. RRB-Vectors are generally faster for indexing and iteration, while sequences are faster for access to the front/back (amortized <math>).

  2. module Data.RRBVector

    The Vector a type is an RRB-Vector of elements of type a. This module should be imported qualified, to avoid name clashes with the Prelude.

    Performance

    The worst case running time complexities are given, with <math> referring to the number of elements in the vector (or <math>, <math>, etc. for multiple vectors). Note that all logarithms are base 16, so the constant factor for <math> operations is quite small.

    Implementation

    The implementation uses Relaxed-Radix-Balanced trees, as described by Currently, a branching factor of 16 is used. The tree is strict in its spine, but lazy in its elements.

  3. matrixVectorMult4D :: Num a => Matrix4D a -> Vector4D a -> Vector4D a

    rzk Rzk.TypeCheck

    No documentation available.

  4. type PVector = Array S Ix1 Double

    srtree Algorithm.SRTree.Likelihoods

    Vector of parameter values. Needs to be strict to be readily accesible.

  5. type PVector = Array S Ix1 Double

    srtree Data.SRTree.Eval

    Vector of parameter values. Needs to be strict to be readily accesible.

  6. type SRVector = Array D Ix1 Double

    srtree Data.SRTree.Eval

    Vector of target values

  7. get_vector_storage :: Opt -> IO Word

    srtree Numeric.Optimization.NLOPT.Bindings

    No documentation available.

  8. set_vector_storage :: Opt -> Word -> IO Result

    srtree Numeric.Optimization.NLOPT.Bindings

    No documentation available.

  9. type SymbolSenseVectorOrientation = (Symbol, String, String, String)

    symmetry-operations-symbols Data.Matrix.SymmetryOperationsSymbols.Common

    No documentation available.

  10. newtype TypeVector (d :: k)

    type-map Data.TypeMap.Internal.Vector

    Vector-backed type-map.

Page 118 of many | Previous | Next