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. findWithDefaultL :: DomCodCnt l r => Cod l -> Bimap l r -> Dom l -> Cod l

    bimaps Data.Bijection.Class

    No documentation available.

  2. findWithDefaultR :: DomCodCnt l r => Cod r -> Bimap l r -> Dom r -> Cod r

    bimaps Data.Bijection.Class

    No documentation available.

  3. fromListWithDefault :: a -> [a] -> BinList a

    binary-list Data.BinaryList

    O(n). Build a binary list from a linked list. If the input list has length different from a power of two, fill to the next power of two with a default element. Warning: this function crashes if the input list length is larger than any power of two in the type Int. However, this is very unlikely.

  4. lookupWithDefault :: a -> ByteString -> Trie a -> a

    bytestring-trie Data.Trie.Convenience

    Lookup a key, returning a default value if it's not found.

  5. hmFindWithDefault :: (Eq k, Hashable k) => v -> k -> HashMap k v -> v

    clash-lib Clash.Netlist.Util

    No documentation available.

  6. optionWithDefault :: forall (m :: Type -> Type) (n :: Type -> Type) s a . (Alternative m, Alternative n) => Format m n s () -> Format m n s a -> Format m n s (Maybe a)

    construct Construct

    Like optional except with arbitrary default serialization for the Nothing value.

    optional = optionWithDefault (literal mempty)
    

  7. parseArgumentWithDefault :: String -> Parser b -> b -> Parser b

    currycarbon Currycarbon.ParserHelpers

    No documentation available.

  8. findWithDefault :: Ord k => a -> k -> IntervalMap k a -> a

    data-interval Data.IntervalMap.Lazy

    The expression (findWithDefault def k map) returns the value at key k or returns default value def when the key is not in the map.

  9. findWithDefault :: Ord k => a -> k -> IntervalMap k a -> a

    data-interval Data.IntervalMap.Strict

    The expression (findWithDefault def k map) returns the value at key k or returns default value def when the key is not in the map.

  10. processWithDefault :: Text -> Template -> Context -> Text

    glabrous Text.Glabrous

    Process and replace missing variables in Context with the given default replacement Text.

Page 14 of many | Previous | Next