Hoogle Search

Within LTS Haskell 24.6 (ghc-9.10.2)

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

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

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

    massiv Data.Massiv.Array.Manifest

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

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

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

    massiv Data.Massiv.Array.Manifest

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

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

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

    massiv Data.Massiv.Array.Manifest

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

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

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

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

  10. toBoxedVector :: Index ix => Array BL ix a -> Vector a

    massiv Data.Massiv.Array.Manifest

    O(1) - Converts a boxed Array into a Vector without touching any elements.

Page 58 of many | Previous | Next