Hoogle Search

Within LTS Haskell 24.31 (ghc-9.10.3)

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

  1. class SBounded a

    singletons-base Prelude.Singletons

    No documentation available.

  2. fromUnboundedDec :: Integral a => a -> Builder

    text-builder-linear Data.Text.Builder.Linear

    Create Builder, containing decimal representation of a given unbounded integer.

    >>> fromChar 'x' <> fromUnboundedDec (1e24 :: Integer)
    "x1000000000000000000000000"
    

  3. appendBounded :: Int -> (forall s . () => MArray s -> Int -> ST s Int) -> Buffer % 1 -> Buffer

    text-builder-linear Data.Text.Builder.Linear.Core

    Low-level routine to append data of unknown size to a Buffer.

  4. prependBounded :: Int -> (forall s . () => MArray s -> Int -> ST s Int) -> (forall s . () => MArray s -> Int -> ST s Int) -> Buffer % 1 -> Buffer

    text-builder-linear Data.Text.Builder.Linear.Core

    Low-level routine to prepend data of unknown size to a Buffer.

  5. package unbounded-delays

    Unbounded thread delays and timeouts The threadDelay and timeout functions from the base library use the bounded Int type for specifying the delay or timeout period. This packages provides alternatives which use the unbounded Integer type.

  6. deriveBounded :: Name -> Q [Dec]

    deriving-compat Data.Bounded.Deriving

    Generates a Bounded instance declaration for the given data type or data family instance.

  7. deriveBounded :: Name -> Q [Dec]

    deriving-compat Data.Bounded.Deriving.Internal

    Generates a Bounded instance declaration for the given data type or data family instance.

  8. genericToNamedSchemaBoundedIntegral :: forall a (d :: Meta) (f :: Type -> Type) . (Bounded a, Integral a, Generic a, Rep a ~ D1 d f, Datatype d) => SchemaOptions -> Proxy a -> NamedSchema

    openapi3 Data.OpenApi.Internal.Schema

    Default generic named schema for Bounded, Integral types.

  9. toSchemaBoundedIntegral :: (Bounded a, Integral a) => Proxy a -> Schema

    openapi3 Data.OpenApi.Internal.Schema

    Default schema for Bounded, Integral types.

    >>> BSL.putStrLn $ encodePretty $ toSchemaBoundedIntegral (Proxy :: Proxy Int16)
    {
    "maximum": 32767,
    "minimum": -32768,
    "type": "integer"
    }
    

  10. genericToNamedSchemaBoundedIntegral :: forall a (d :: Meta) (f :: Type -> Type) . (Bounded a, Integral a, Generic a, Rep a ~ D1 d f, Datatype d) => SchemaOptions -> Proxy a -> NamedSchema

    openapi3 Data.OpenApi.Schema

    Default generic named schema for Bounded, Integral types.

Page 26 of many | Previous | Next