Hoogle Search

Within LTS Haskell 24.17 (ghc-9.10.3)

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

  1. nonEmpty :: forall s u (m :: Type -> Type) a . ParsecT s u m a -> ParsecT s u m (NonEmpty a)

    burrito Burrito.Internal.Parse

    No documentation available.

  2. nonEmpty :: [a] -> Maybe (NonEmpty a)

    cabal-install-solver Distribution.Solver.Compat.Prelude

    nonEmpty efficiently turns a normal list into a NonEmpty stream, producing Nothing if the input is empty.

  3. nonempty :: (AsEmpty e, IsString s) => Reader e s

    envparse Env

    The reader that accepts only non-empty strings

  4. nonempty :: (AsEmpty e, IsString s) => Reader e s

    envparse Env.Internal.Parser

    The reader that accepts only non-empty strings

  5. nonEmpty :: [a] -> Maybe (NonEmpty a)

    incipit-base Incipit.Base

    nonEmpty efficiently turns a normal list into a NonEmpty stream, producing Nothing if the input is empty.

  6. nonEmpty :: Text -> Maybe NonemptyText

    pontarius-xmpp Network.Xmpp.Internal

    Check that Text contains at least one non-space character and wrap it

  7. nonEmpty :: NonEmpty a -> [a]

    testing-type-modifiers Data.Modifiers

    No documentation available.

  8. nonempty :: forall (w :: Nat) . Domain w -> Bool

    what4 What4.Utils.BVDomain.Bitwise

    Returns true iff there is at least on element in this bitwise domain.

  9. nonEmpty :: [a] -> Maybe (NonEmpty a)

    Agda Agda.Utils.List1

    nonEmpty efficiently turns a normal list into a NonEmpty stream, producing Nothing if the input is empty.

  10. nonEmpty :: TomlCodec a -> Key -> TomlCodec (NonEmpty a)

    tomland Toml.Codec.Combinator.List

    Codec for NonEmpty list of values. Represented in TOML as array of tables. Example: Haskell NonEmpty Int can look like this in your TOML file:

    foo =
    [ {a = 1}
    , {a = 2}
    , {a = 3}
    ]
    
    If you try to decode an empty TOML list you will see the error:
    tomland decode error:  Table array [[foo]] is not found
    
    or
    tomland decode error:  Key foo.a is not found
    
    If the key is not present in TOML the following decode error will be spotted:
    tomland decode error:  Table array [[foo]] is not found
    

Page 3 of many | Previous | Next