Hoogle Search

Within LTS Haskell 24.52 (ghc-9.10.3)

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

  1. newtype Enum a

    unboxing-vector Data.Vector.Unboxing

    A newtype wrapper to be used with DerivingVia. The value will be stored as Int, via fromEnum/toEnum. Usage:

    data Direction = North | South | East | West
    deriving Enum
    deriving Data.Vector.Unboxing.Unboxable via Data.Vector.Unboxing.Enum Bar
    

  2. Enum :: a -> Enum a

    unboxing-vector Data.Vector.Unboxing

    No documentation available.

  3. newtype EnumRep rep a

    unboxing-vector Data.Vector.Unboxing

    A newtype wrapper to be used with DerivingVia. Usage:

    data Direction = North | South | East | West
    deriving Enum
    deriving Data.Vector.Unboxing.Unboxable via Data.Vector.Unboxing.EnumRep Int8 Bar
    

  4. EnumRep :: a -> EnumRep rep a

    unboxing-vector Data.Vector.Unboxing

    No documentation available.

  5. enumFromN :: (Num a, Unboxable a) => a -> Int -> Vector a

    unboxing-vector Data.Vector.Unboxing

    No documentation available.

  6. enumFromStepN :: (Num a, Unboxable a) => a -> a -> Int -> Vector a

    unboxing-vector Data.Vector.Unboxing

    No documentation available.

  7. enumFromThenTo :: (Enum a, Unboxable a) => a -> a -> a -> Vector a

    unboxing-vector Data.Vector.Unboxing

    No documentation available.

  8. enumFromTo :: (Enum a, Unboxable a) => a -> a -> Vector a

    unboxing-vector Data.Vector.Unboxing

    No documentation available.

  9. newtype Enum a

    unboxing-vector Data.Vector.Unboxing.Mutable

    A newtype wrapper to be used with DerivingVia. The value will be stored as Int, via fromEnum/toEnum. Usage:

    data Direction = North | South | East | West
    deriving Enum
    deriving Data.Vector.Unboxing.Unboxable via Data.Vector.Unboxing.Enum Bar
    

  10. Enum :: a -> Enum a

    unboxing-vector Data.Vector.Unboxing.Mutable

    No documentation available.

Page 545 of many | Previous | Next