Hoogle Search
Within LTS Haskell 24.50 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
logRecordSeverityNumber :: ImmutableLogRecord -> Maybe SeverityNumberhs-opentelemetry-api OpenTelemetry.Internal.Logs.Types SeverityNumber is an integer number. Smaller numerical values correspond to less severe events (such as debug events), larger numerical values correspond to more severe events (such as errors and critical events). The following table defines the meaning of SeverityNumber value: TODO: table Smaller numerical values in each range represent less important (less severe) events. Larger numerical values in each range represent more important (more severe) events. For example SeverityNumber=17 describes an error that is less critical than an error with SeverityNumber=20. Mappings from existing logging systems and formats (or source format for short) must define how severity (or log level) of that particular format corresponds to SeverityNumber of this data model based on the meaning given for each range in the above table. More Information These short names can be used to represent SeverityNumber in the UI In the contexts where severity participates in less-than / greater-than comparisons SeverityNumber field should be used. SeverityNumber can be compared to another SeverityNumber or to numbers in the 1..24 range (or to the corresponding short names).
severityNumber :: LogRecordArguments -> Maybe SeverityNumberhs-opentelemetry-api OpenTelemetry.Internal.Logs.Types No documentation available.
-
hs-opentelemetry-api OpenTelemetry.Logs.Core No documentation available.
severityNumber :: LogRecordArguments -> Maybe SeverityNumberhs-opentelemetry-api OpenTelemetry.Logs.Core No documentation available.
-
pandoc-types Text.Pandoc.Definition Delimiter of list numbers.
-
pandoc-types Text.Pandoc.Definition Style of list numbers.
citationNoteNum :: Citation -> Intpandoc-types Text.Pandoc.Definition No documentation available.
colorNum :: ColorOptions -> Stylepretty-simple Text.Pretty.Simple Color to use for numbers.
colorNum :: ColorOptions -> Stylepretty-simple Text.Pretty.Simple.Internal.Color Color to use for numbers.
parseNumberLit :: Char -> String -> (String, String)pretty-simple Text.Pretty.Simple.Internal.ExprParser Parses integers and reals, like 123 and 45.67. To be more precise, any numbers matching the regex \d+(\.\d+)? should get parsed by this function.
>>> parseNumberLit '3' "456hello world []" ("3456","hello world []") >>> parseNumberLit '0' ".12399880 foobar" ("0.12399880"," foobar")