Hoogle Search

Within LTS Haskell 24.51 (ghc-9.10.3)

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

  1. _formatNumberFormat :: Format -> Maybe NumberFormat

    xlsx Codec.Xlsx.Formatted

    No documentation available.

  2. formatNumberFormat :: Lens' Format (Maybe NumberFormat)

    xlsx Codec.Xlsx.Formatted

    No documentation available.

  3. _pageSetupFirstPageNumber :: PageSetup -> Maybe Int

    xlsx Codec.Xlsx.Types

    Page number for first printed page. If no value is specified, then automatic is assumed.

  4. _pageSetupUseFirstPageNumber :: PageSetup -> Maybe Bool

    xlsx Codec.Xlsx.Types

    Use _pageSetupFirstPageNumber value for first page number, and do not auto number the pages.

  5. ErrorNum :: ErrorType

    xlsx Codec.Xlsx.Types.Common

    #NUM! - Intended to indicate when an argument to a function has a compatible type, but has a value that is outside the domain over which that function is defined. (This is known as a domain error.) For example, Certain calls to ASIN, ATANH, FACT, and SQRT might result in domain errors. Intended to indicate that the result of a function cannot be represented in a value of the specified type, typically due to extreme magnitude. (This is known as a range error.) For example, FACT(1000) might result in a range error.

  6. dateFromNumber :: RealFrac t => DateBase -> t -> UTCTime

    xlsx Codec.Xlsx.Types.Common

    Converts serial value into datetime according to the specified date base. Because Excel treats 1900 as a leap year even though it isn't, this function converts any numbers that represent some time in 1900-02-29 in Excel to UTCTime 1900-03-01 00:00. See https://docs.microsoft.com/en-gb/office/troubleshoot/excel/wrongly-assumes-1900-is-leap-year for details.

    show (dateFromNumber DateBase1900 42929.75) == "2017-07-13 18:00:00 UTC"
    show (dateFromNumber DateBase1900 60) == "1900-03-01 00:00:00 UTC"
    show (dateFromNumber DateBase1900 61) == "1900-03-01 00:00:00 UTC"
    

  7. dateToNumber :: Fractional a => DateBase -> UTCTime -> a

    xlsx Codec.Xlsx.Types.Common

    Converts datetime into serial value. Because Excel treats 1900 as a leap year even though it isn't, the numbers that represent times in 1900-02-29 in Excel, in the range [60, 61[, are never generated by this function for DateBase1900. This means that under those conditions this is not an inverse of dateFromNumber. See https://docs.microsoft.com/en-gb/office/troubleshoot/excel/wrongly-assumes-1900-is-leap-year for details.

  8. _pageSetupFirstPageNumber :: PageSetup -> Maybe Int

    xlsx Codec.Xlsx.Types.PageSetup

    Page number for first printed page. If no value is specified, then automatic is assumed.

  9. _pageSetupUseFirstPageNumber :: PageSetup -> Maybe Bool

    xlsx Codec.Xlsx.Types.PageSetup

    Use _pageSetupFirstPageNumber value for first page number, and do not auto number the pages.

  10. pageSetupFirstPageNumber :: Lens' PageSetup (Maybe Int)

    xlsx Codec.Xlsx.Types.PageSetup

    No documentation available.

Page 365 of many | Previous | Next