Hoogle Search

Within LTS Haskell 24.37 (ghc-9.10.3)

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

  1. getSequenceByID_IO :: String -> IO (Maybe SequenceData)

    oeis Math.OEIS

    The same as getSequenceByID, but with a result in the IO monad.

  2. lookupSequence :: SequenceData -> Maybe OEISSequence

    oeis Math.OEIS

    Find a matching sequence in the OEIS database, returning a data structure containing the entirety of the information the OEIS has on the sequence. The standard disclaimer about not being in the IO monad applies.

  3. lookupSequenceByID :: String -> Maybe OEISSequence

    oeis Math.OEIS

    Look up a sequence by ID number, returning a data structure containing the entirety of the information the OEIS has on the sequence. The standard disclaimer about not being in the IO monad applies. Examples:

    Prelude Math.OEIS> description `fmap` lookupSequenceByID "A000040"
    Just "The prime numbers."
    
    Prelude Math.OEIS> keywords `fmap` lookupSequenceByID "A000105"
    Just [Nonn,Hard,Nice,Core]
    

  4. lookupSequenceByID_IO :: String -> IO (Maybe OEISSequence)

    oeis Math.OEIS

    The same as lookupSequenceByID, but in the IO monad.

  5. lookupSequence_IO :: SequenceData -> IO (Maybe OEISSequence)

    oeis Math.OEIS

    The same as lookupSequence, but in the IO monad.

  6. lookupSequences_IO :: SequenceData -> IO [OEISSequence]

    oeis Math.OEIS

    Similar to lookupSequence_IO, but return up to 10 results.

  7. searchSequence_IO :: String -> IO (Maybe OEISSequence)

    oeis Math.OEIS

    Look up a sequence in the OEIS using its search function.

  8. searchSequences_IO :: String -> IO [OEISSequence]

    oeis Math.OEIS

    Look up sequences in the OEIS using its search function (returns up to 10 results).

  9. BadSequenceId :: ExceptionType

    pinch Pinch.Client

    No documentation available.

  10. BadSequenceId :: ExceptionType

    pinch Pinch.Internal.Exception

    No documentation available.

Page 83 of many | Previous | Next