Hoogle Search

Within LTS Haskell 24.42 (ghc-9.10.3)

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

  1. compileWithDefault :: DefaultScope -> HeterocephalusSetting -> QuasiQuoter

    heterocephalus Text.Heterocephalus

    QuasiQuoter.

  2. sqlSetListWithDefaults :: (MonadState SqlInsert m, Show a, ToSQL a) => SQL -> [Maybe a] -> m ()

    hpqtypes-extras Database.PostgreSQL.PQTypes.SQL.Builder

    No documentation available.

  3. xpWithDefault :: a -> PU t a -> PU t a

    xml-picklers Data.XML.Pickle

    Attempt to use a pickler. Return a default value when the pickler doesn't return anything (doesn't touch on UnpickleError). Unlike xpDefault, the default value is encoded in the XML document.

  4. bareNameWithDefault :: (LensNamed a, NameOf a ~ NamedName) => ArgName -> a -> ArgName

    Agda Agda.Syntax.Common

    No documentation available.

  5. headWithDefault :: a -> [a] -> a

    Agda Agda.Utils.List

    Head function (safe). Returns a default value on empty lists. O(1).

    headWithDefault 42 []      = 42
    headWithDefault 42 [1,2,3] = 1
    

  6. indexWithDefault :: a -> [a] -> Int -> a

    Agda Agda.Utils.List

    Lookup function with default value for index out of range. O(min n index). The name is chosen akin to genericIndex.

  7. initWithDefault :: [a] -> [a] -> [a]

    Agda Agda.Utils.List

    init, safe. O(n).

  8. lastWithDefault :: a -> [a] -> a

    Agda Agda.Utils.List

    Last element (safe). Returns a default list on empty lists. O(n).

  9. tailWithDefault :: [a] -> [a] -> [a]

    Agda Agda.Utils.List

    Tail function (safe). Returns a default list on empty lists. O(1).

  10. headWithDefault :: a -> [a] -> a

    BNFC BNFC.Utils

    Get the first element of a list, fallback for empty list.

Page 13 of many | Previous | Next