Hoogle Search

Within LTS Haskell 24.4 (ghc-9.10.2)

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

  1. fromList :: Storable a => ChunkSize -> [a] -> T a

    synthesizer-core Synthesizer.Storable.Signal

    No documentation available.

  2. fromList :: Ord k => [(k, v)] -> OMap k v

    tree-diff Data.TreeDiff.OMap

    >>> fromList [('g', "gamma"), ('b', "beta"), ('a', "alpha")]
    fromList [('g',"gamma"),('b',"beta"),('a',"alpha")]
    

  3. fromList :: Ord v => [(v, v, a)] -> IntervalMap v a

    trifecta Text.Trifecta.Util.IntervalMap

    No documentation available.

  4. fromList :: [Prime Int] -> PrimeIntSet

    arithmoi Math.NumberTheory.Primes.IntSet

    Build a set from a list of primes.

  5. fromList :: (Eq a, GcdDomain a) => [a] -> SmoothBasis a

    arithmoi Math.NumberTheory.SmoothNumbers

    Build a SmoothBasis from a list of numbers, sanitizing it from duplicates, zeros and units.

    >>> fromList [2, 3]
    SmoothBasis {unSmoothBasis = [2,3]}
    
    >>> fromList [2, 2]
    SmoothBasis {unSmoothBasis = [2]}
    
    >>> fromList [1, 3]
    SmoothBasis {unSmoothBasis = [3]}
    

  6. fromList :: IsList l => [Item l] -> l

    base-prelude BasePrelude

    The fromList function constructs the structure l from the given list of Item l

  7. fromList :: String -> CharSet

    charset Data.CharSet

    No documentation available.

  8. fromList :: [Word8] -> ByteSet

    charset Data.CharSet.ByteSet

    No documentation available.

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

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

Page 18 of many | Previous | Next