Hoogle Search

Within LTS Haskell 24.58 (ghc-9.10.3)

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

  1. readNVRA :: String -> NVRA

    rpm-nvr Data.RPM.NVRA

    Parse an NVRA with arch suffix Errors if not of the form "name-version-release[.arch]"

  2. readVerRel :: String -> VerRel

    rpm-nvr Data.RPM.VerRel

    Read a version-release Errors if malformed

  3. readLitChar :: ReadS Char

    speculate Test.Speculate.Utils

    Read a string representation of a character, using Haskell source-language escape conventions, and convert it to the character that it encodes. For example:

    readLitChar "\\nHello"  =  [('\n', "Hello")]
    

  4. readTime :: ParseTime t => TimeLocale -> String -> String -> t

    thyme Data.Thyme.Format

    Parse a string as a ParseTime instance value. Call error if parsing fails.

  5. readsTime :: ParseTime t => TimeLocale -> String -> ReadS t

    thyme Data.Thyme.Format

    Produce a ReadS to parse a string as a ParseTime instance value.

  6. readsEnum :: (Bounded a, Enum a, Render a) => Bool -> Bool -> ReadS a

    ttc Data.TTC

    Implement ReadS using parseEnum This implementation expects all of the input to be consumed.

  7. readsWithParse :: Parse a => ReadS a

    ttc Data.TTC

    Implement ReadS using a Parse instance This implementation expects all of the input to be consumed.

  8. readWaveFile :: MonadIO m => FilePath -> m Wave

    wave Codec.Audio.Wave

    Read a Wave record from a WAVE file found at given path. This action throws WaveException if the file is malformed and cannot be read. Vanilla WAVE and RF64 files are supported. The format is detected automatically from the contents of the file, not by extension. Only PCM with samples in the form of integers or floats are supported, see SampleFormat. Finally, if “fmt” chunk is not extensible, we try to guess the channel mask from the number of channels alone, here is how:

    • 1 channel: front center (C)
    • 2 channels: front left (L), front right (R)
    • 3 channels: L, R, C
    • 4 channels: L, R, back left (Lb), back right (Rb)
    • 5 channels: L, R, C, Lb, Rb
    • 6 channels: L, R, C, LFE, Lb, Rb
    • 7 channels: L, R, C, LFE, back center (Cb), side left (Ls), side right (Rs)
    • 8 channels: L, R, C, LFE, Lb, Rb, Ls, Rs
    • N channels: first N items are taken from [minBound..maxBound] of SpeakerPositions

  9. readFailure :: Text -> Either String (a, Text)

    xlsx Codec.Xlsx.Parser.Internal

    No documentation available.

  10. readSuccess :: a -> Either String (a, Text)

    xlsx Codec.Xlsx.Parser.Internal

    No documentation available.

Page 241 of many | Previous | Next