Hoogle Search
Within LTS Haskell 24.35 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
trie-simple Data.Trie.Set List of all elements.
enumFromN :: (Num a, Unboxable a) => a -> Int -> Vector aunboxing-vector Data.Vector.Unboxing No documentation available.
enumFromStepN :: (Num a, Unboxable a) => a -> a -> Int -> Vector aunboxing-vector Data.Vector.Unboxing No documentation available.
enumFromThenTo :: (Enum a, Unboxable a) => a -> a -> a -> Vector aunboxing-vector Data.Vector.Unboxing No documentation available.
enumFromTo :: (Enum a, Unboxable a) => a -> a -> Vector aunboxing-vector Data.Vector.Unboxing No documentation available.
enumOf :: Eq k => Text -> [(Text, k)] -> UnjsonDef kunjson Data.Unjson Provide sum type support for parameterless constructors. For related functionality see disjointUnionOf. Example:
data X = A | B unjsonX = enumOf "type_thing" [("a_thing", A), ("b_thing", B)]enumUnjsonDef :: (Eq a, Typeable a, Enum a, Bounded a, Data a) => UnjsonDef aunjson Data.Unjson Automatic sum type conversion with parameterless constructors. Basically an automatic version of enumOf. Example:
data X = A | B deriving (Eq, Data, Enum, Bounded) instance Unjson X where unjsonDef = enumUnjsonDef
enumContent :: [(Text, a)] -> Content axml-parser XmlParser Map the content using a dictionary.
enumAdjacent :: (Ord a, Enum a) => a -> a -> BoolRanged-sets Data.Ranged.Boundaries Check adjacency for sparse enumerated types (i.e. where there is no value between x and succ x).
enumFrom :: Enum a => a -> [a]classy-prelude-yesod ClassyPrelude.Yesod Used in Haskell's translation of [n..] with [n..] = enumFrom n, a possible implementation being enumFrom n = n : enumFrom (succ n).
Examples
enumFrom 4 :: [Integer] = [4,5,6,7,...]
enumFrom 6 :: [Int] = [6,7,8,9,...,maxBound :: Int]