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.
fromList :: Vector v a => [a] -> v afixed-vector Data.Vector.Fixed Create vector form list. Will throw error if list is shorter than resulting vector.
fromList' :: Vector v a => [a] -> v afixed-vector Data.Vector.Fixed Create vector form list. Will throw error if list has different length from resulting vector.
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.
toList :: Vector v a => v a -> [a]fixed-vector Data.Vector.Fixed Convert vector to the list
fromList :: forall (n :: PeanoNum) a . ArityPeano n => [a] -> ContVec n afixed-vector Data.Vector.Fixed.Cont Convert list to continuation-based vector. Will throw error if list is shorter than resulting vector.
fromList' :: forall (n :: PeanoNum) a . ArityPeano n => [a] -> ContVec n afixed-vector Data.Vector.Fixed.Cont Same as fromList bu throws error is list doesn't have same length as vector.
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.
toList :: forall (n :: PeanoNum) a . ArityPeano n => ContVec n a -> [a]fixed-vector Data.Vector.Fixed.Cont Convert vector to the list
-
greskell-core Data.Greskell.GMap parseUnwrapList :: (IsList a, i ~ Item a, FromGraphSON i) => GValue -> Parser agreskell-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.