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.
- 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. 
- 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. 
- nonempty :: (AsEmpty e, IsString s) => Reader e s- envparse - Env - The reader that accepts only non-empty strings 
- nonempty :: (AsEmpty e, IsString s) => Reader e s- envparse - Env.Internal.Parser - The reader that accepts only non-empty strings 
- 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. 
- nonEmpty :: Text -> Maybe NonemptyText- pontarius-xmpp - Network.Xmpp.Internal - Check that Text contains at least one non-space character and wrap it 
- 
testing-type-modifiers Data.Modifiers No documentation available. 
- 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. 
- 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. 
- 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 
