Hoogle Search

Within LTS Haskell 24.26 (ghc-9.10.3)

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

  1. lookupName :: forall nm (v :: Type -> Type) m n b . (IsName nm, Metric v, Semigroup m, OrderedField n) => nm -> QDiagram b v n m -> Maybe (Subdiagram b v n m)

    diagrams-core Diagrams.Core.Types

    Lookup the most recent diagram associated with (some qualification of) the given name.

  2. lookupSub :: forall nm b (v :: Type -> Type) n m . IsName nm => nm -> SubMap b v n m -> Maybe [Subdiagram b v n m]

    diagrams-core Diagrams.Core.Types

    Look for the given name in a name map, returning a list of subdiagrams associated with that name. If no names match the given name exactly, return all the subdiagrams associated with names of which the given name is a suffix.

  3. lookupBy1st :: Ord a => a -> BiMultiMap a b v -> Set (b, v)

    distributed-process Control.Distributed.Process.Internal.BiMultiMap

    Looks up all the triplets whose first component is the given value.

  4. lookupBy2nd :: Ord b => b -> BiMultiMap a b v -> Set (a, v)

    distributed-process Control.Distributed.Process.Internal.BiMultiMap

    Looks up all the triplets whose second component is the given value.

  5. lookupDefault :: (Eq k, Hashable k) => v -> k -> InsOrdHashMap k v -> v

    insert-ordered-containers Data.HashMap.Strict.InsOrd

    No documentation available.

  6. lookupMeta :: Text -> Meta -> Maybe MetaValue

    pandoc-types Text.Pandoc.Definition

    Retrieve the metadata value for a given key.

  7. lookupWithDefault :: ByteString -> CI ByteString -> Headers -> ByteString

    snap-core Snap.Types.Headers

    Look up the value of a given HTTP header field or return the provided default value when that header field is not present. Example:

    ghci> :set -XOverloadedStrings
    ghci> let hdrs = H.fromList [("Host", "localhost")]
    ghci> H.lookupWithDefault "host" "127.0.0.1" $ hdrs
    "localhost"
    ghci> H.lookupWithDefault "Accept" "text/plain" $ hdrs
    "text/plain"
    

  8. lookupMode :: AnyMode -> YiM AnyMode

    yi-core Yi.Mode.Common

    Check whether a mode of the same name is already in modeTable and returns the original mode, if it isn't the case.

  9. lookupTag :: Tag -> TagTable -> [(FilePath, Int)]

    yi-core Yi.Tag

    Find the location of a tag using the tag table. Returns a full path and line number

  10. lookupEnv :: PandocMonad m => Text -> m (Maybe Text)

    pandoc Text.Pandoc.Class

    Lookup an environment variable.

Page 73 of many | Previous | Next