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.
fromListBindEnv :: [(BindId, (Symbol, SortedReft, a))] -> BindEnv aliquid-fixpoint Language.Fixpoint.Types.Environments No documentation available.
fromListIBindEnv :: [BindId] -> IBindEnvliquid-fixpoint Language.Fixpoint.Types.Environments No documentation available.
fromListSEnv :: [(Symbol, a)] -> SEnv aliquid-fixpoint Language.Fixpoint.Types.Environments No documentation available.
fromListREnv :: [(Symbol, SpecType)] -> [(Symbol, SpecType)] -> REnvliquidhaskell-boot Language.Haskell.Liquid.Constraint.Env No documentation available.
fromListHEnv :: [Symbol] -> HEnvliquidhaskell-boot Language.Haskell.Liquid.Constraint.Types No documentation available.
fromListBalanced :: [a] -> AList amonad-par-extras Control.Monad.Par.AList Convert an ordinary list, but do so using Append and ASing rather than AList
fromListWith :: (Ord k, MonoidNull v) => (v -> v -> v) -> [(k, v)] -> MonoidMap k vmonoidmap-internal Data.MonoidMap.Internal Constructs a MonoidMap from a list of key-value pairs, with a combining function for values. If the list contains more than one value for the same key, values are combined together in the order that they appear with the given combining function. Satisfies the following property for all possible keys k:
get k (fromListWith f kvs) == maybe mempty (foldl1 f) (nonEmpty (snd <$> filter ((== k) . fst) kvs))
fromListN :: Unbox a => Int -> [a] -> Array astreamly-core Streamly.Data.Array Create an Array from the first N elements of a list. The array is allocated to size N, if the list terminates before N elements then the array may hold less than N elements.
fromListN :: Int -> [a] -> Array astreamly-core Streamly.Data.Array.Generic No documentation available.
fromListN :: (MonadIO m, Unbox a) => Int -> [a] -> m (MutArray a)streamly-core Streamly.Data.MutArray Create a MutArray from the first N elements of a list. The array is allocated to size N, if the list terminates before N elements then the array may hold less than N elements.