Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

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

  1. enumFromTo :: Enum a => a -> a -> [a]

    copilot-language Copilot.Language.Prelude

    Used in Haskell's translation of [n..m] with [n..m] = enumFromTo n m, a possible implementation being

    enumFromTo n m
    | n <= m = n : enumFromTo (succ n) m
    | otherwise = []
    
    

    Examples

    • enumFromTo 6 10 :: [Int] = [6,7,8,9,10]
    • enumFromTo 42 1 :: [Integer] = []

  2. enumPics :: HasName a => [a] -> [a]

    funcmp FMP.Picture

    No documentation available.

  3. enumeration :: (Generic a, HasFirst (Rep a), HasSuccessor (Rep a)) => [a]

    generic-enumeration Data.Enumeration.Generic

    Produce a list of every possible value.

  4. enumAsString :: ParquetOptions -> Maybe Bool

    gogol-bigquery Gogol.BigQuery

    Optional. Indicates whether to infer Parquet ENUM logical type as STRING instead of BYTES by default.

  5. enumAsString :: ParquetOptions -> Maybe Bool

    gogol-bigquery Gogol.BigQuery.Types

    Optional. Indicates whether to infer Parquet ENUM logical type as STRING instead of BYTES by default.

  6. enumOptions :: ParameterMetadata -> Maybe [ParameterMetadataEnumOption]

    gogol-dataflow Gogol.Dataflow

    Optional. The options shown when ENUM ParameterType is specified.

  7. enumOptions :: ParameterMetadata -> Maybe [ParameterMetadataEnumOption]

    gogol-dataflow Gogol.Dataflow.Types

    Optional. The options shown when ENUM ParameterType is specified.

  8. enumDeprecated :: JsonSchema -> Maybe [Bool]

    gogol-discovery Gogol.Discovery

    The deprecation status for the enums. Each position maps to the corresponding value in the "enum" array.

  9. enumDescriptions :: JsonSchema -> Maybe [Text]

    gogol-discovery Gogol.Discovery

    The descriptions for the enums. Each position maps to the corresponding value in the "enum" array.

  10. enumDeprecated :: JsonSchema -> Maybe [Bool]

    gogol-discovery Gogol.Discovery.Types

    The deprecation status for the enums. Each position maps to the corresponding value in the "enum" array.

Page 87 of many | Previous | Next