Hoogle Search

Within LTS Haskell 24.36 (ghc-9.10.3)

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

  1. fromList :: Vector v a => [a] -> v a

    fixed-vector Data.Vector.Fixed

    Create vector form list. Will throw error if list is shorter than resulting vector.

  2. fromList' :: Vector v a => [a] -> v a

    fixed-vector Data.Vector.Fixed

    Create vector form list. Will throw error if list has different length from resulting vector.

  3. fromListM :: Vector v a => [a] -> Maybe (v a)

    fixed-vector Data.Vector.Fixed

    Create vector form list. Will return Nothing if list has different length from resulting vector.

  4. toList :: Vector v a => v a -> [a]

    fixed-vector Data.Vector.Fixed

    Convert vector to the list

  5. fromList :: forall (n :: PeanoNum) a . ArityPeano n => [a] -> ContVec n a

    fixed-vector Data.Vector.Fixed.Cont

    Convert list to continuation-based vector. Will throw error if list is shorter than resulting vector.

  6. fromList' :: forall (n :: PeanoNum) a . ArityPeano n => [a] -> ContVec n a

    fixed-vector Data.Vector.Fixed.Cont

    Same as fromList bu throws error is list doesn't have same length as vector.

  7. fromListM :: forall (n :: PeanoNum) a . ArityPeano n => [a] -> Maybe (ContVec n a)

    fixed-vector Data.Vector.Fixed.Cont

    Convert list to continuation-based vector. Will fail with Nothing if list doesn't have right length.

  8. toList :: forall (n :: PeanoNum) a . ArityPeano n => ContVec n a -> [a]

    fixed-vector Data.Vector.Fixed.Cont

    Convert vector to the list

  9. toList :: forall (c :: Type -> Type -> Type) k v . (IsList (c k v), Item (c k v) ~ (k, v)) => GMap c k v -> [GMapEntry k v]

    greskell-core Data.Greskell.GMap

    Deconstruct GMap into a list of GMapEntrys.

  10. parseUnwrapList :: (IsList a, i ~ Item a, FromGraphSON i) => GValue -> Parser a

    greskell-core Data.Greskell.GraphSON

    Extract GArray from the given GValue, parse the items in the array, and gather them by fromList. Useful to implement FromGraphSON instances for IsList types.

Page 143 of many | Previous | Next