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. toList :: Vector v a => v a -> [a]

    fixed-vector Data.Vector.Fixed

    Convert vector to the list

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

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

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

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

    fixed-vector Data.Vector.Fixed.Cont

    Convert vector to the list

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

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

  8. fromList :: Ord a => [a] -> Heap a

    heaps Data.Heap

    O(n). Build a heap from a list of values.

    fromList . toListid
    toList . fromListsort
    

  9. toUnsortedList :: Heap a -> [a]

    heaps Data.Heap

    O(n). Returns the elements in the heap in some arbitrary, very likely unsorted, order.

    >>> toUnsortedList (fromList [3,1,2])
    [1,3,2]
    
    fromList . toUnsortedListid
    

  10. module Data.HeteroParList

    No documentation available.

Page 143 of many | Previous | Next