Hoogle Search
Within LTS Haskell 24.10 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
enumFromStepN :: (Unbox a, Num a) => a -> a -> Int -> Vector ario RIO.Vector.Unboxed No documentation available.
enumFromThenTo :: (Unbox a, Enum a) => a -> a -> a -> Vector ario RIO.Vector.Unboxed No documentation available.
enumFromTo :: (Unbox a, Enum a) => a -> a -> Vector ario RIO.Vector.Unboxed No documentation available.
enumSequenceFrom :: Num a => a -> Sequence amath-functions Numeric.Series enumSequenceFrom x generate sequence: <math>
enumSequenceFromStep :: Num a => a -> a -> Sequence amath-functions Numeric.Series enumSequenceFromStep x d generate sequence: <math>
enumFrom :: Enum a => a -> [a]Cabal-syntax Distribution.Compat.Prelude No documentation available.
enumFromThen :: Enum a => a -> a -> [a]Cabal-syntax Distribution.Compat.Prelude No documentation available.
enumFromThenTo :: Enum a => a -> a -> a -> [a]Cabal-syntax Distribution.Compat.Prelude No documentation available.
enumFromTo :: Enum a => a -> a -> [a]Cabal-syntax Distribution.Compat.Prelude No documentation available.
enumLaws :: (Enum a, Eq a, Arbitrary a, Show a) => Proxy a -> Lawsquickcheck-classes-base Test.QuickCheck.Classes.Base Tests the following properties:
This only works for Enum types that are not bounded, meaning that succ and pred must be total. This means that these property tests work correctly for types like Integer but not for Int. Sadly, there is not a good way to test fromEnum and toEnum, since many types that have reasonable implementations for succ and pred have more inhabitants than Int does.