Hoogle Search

Within LTS Haskell 24.40 (ghc-9.10.3)

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

  1. evalBoxedVector :: Comp -> Vector a -> Array B Ix1 a

    massiv Data.Massiv.Array.Manifest

    O(n) - Convert a boxed vector and evaluate all elements to WHNF. Computation strategy will be respected during evaluation

  2. fromBoxedMVector :: MVector s a -> MArray s BL Ix1 a

    massiv Data.Massiv.Array.Manifest

    O(1) - Convert mutable boxed vector to a lazy mutable boxed array. Both keep pointing to the same memory

  3. fromBoxedVector :: Vector a -> Vector BL a

    massiv Data.Massiv.Array.Manifest

    O(1) - Cast a boxed vector without touching any elements.

  4. fromPrimitiveMVector :: MVector s e -> MArray s P Ix1 e

    massiv Data.Massiv.Array.Manifest

    O(1) - Cast a mutable primitive vector to a mutable primitive array.

  5. fromPrimitiveVector :: Vector e -> Array P Ix1 e

    massiv Data.Massiv.Array.Manifest

    O(1) - Cast a primitive vector to a primitive array.

  6. fromStorableMVector :: MVector s e -> MVector s S e

    massiv Data.Massiv.Array.Manifest

    O(1) - Cast a mutable storable vector to a mutable storable array.

  7. fromStorableVector :: Comp -> Vector e -> Vector S e

    massiv Data.Massiv.Array.Manifest

    O(1) - Cast a storable vector to a storable array.

  8. fromUnboxedMVector :: Unbox e => MVector s e -> MVector s U e

    massiv Data.Massiv.Array.Manifest

    O(1) - Wrap an unboxed mutable vector and produce a mutable unboxed flat array.

  9. fromUnboxedVector :: Unbox e => Comp -> Vector e -> Vector U e

    massiv Data.Massiv.Array.Manifest

    O(1) - Wrap an unboxed vector and produce an unboxed flat array.

  10. toBoxedMVector :: Index ix => MArray s BL ix a -> MVector s a

    massiv Data.Massiv.Array.Manifest

    O(1) - Converts a boxed MArray into a MVector.

Page 58 of many | Previous | Next