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.
lookupUnitId :: UnitState -> UnitId -> Maybe UnitInfoghc GHC.Unit.State Find the unit we know about with the given unit id, if any
lookupUnitId' :: UnitInfoMap -> UnitId -> Maybe UnitInfoghc GHC.Unit.State Find the unit we know about with the given unit id, if any
lookupAll :: Text -> Form -> [Text]http-api-data Web.FormUrlEncoded Find all values corresponding to a given key in a Form.
>>> lookupAll "name" [] [] >>> lookupAll "name" [("name", "Oleg")] ["Oleg"] >>> lookupAll "name" [("name", "Oleg"), ("name", "David")] ["Oleg","David"]lookupMaybe :: Text -> Form -> Either Text (Maybe Text)http-api-data Web.FormUrlEncoded Lookup an optional value for a key. Fail if there is more than one value.
>>> lookupMaybe "name" [] Right Nothing >>> lookupMaybe "name" [("name", "Oleg")] Right (Just "Oleg") >>> lookupMaybe "name" [("name", "Oleg"), ("name", "David")] Left "Duplicate key \"name\""lookupUnique :: Text -> Form -> Either Text Texthttp-api-data Web.FormUrlEncoded Lookup a unique value for a key. Fail if there is zero or more than one value.
>>> lookupUnique "name" [] Left "Could not find key \"name\"" >>> lookupUnique "name" [("name", "Oleg")] Right "Oleg" >>> lookupUnique "name" [("name", "Oleg"), ("name", "David")] Left "Duplicate key \"name\""lookupAll :: Text -> Form -> [Text]http-api-data Web.Internal.FormUrlEncoded Find all values corresponding to a given key in a Form.
>>> lookupAll "name" [] [] >>> lookupAll "name" [("name", "Oleg")] ["Oleg"] >>> lookupAll "name" [("name", "Oleg"), ("name", "David")] ["Oleg","David"]lookupMaybe :: Text -> Form -> Either Text (Maybe Text)http-api-data Web.Internal.FormUrlEncoded Lookup an optional value for a key. Fail if there is more than one value.
>>> lookupMaybe "name" [] Right Nothing >>> lookupMaybe "name" [("name", "Oleg")] Right (Just "Oleg") >>> lookupMaybe "name" [("name", "Oleg"), ("name", "David")] Left "Duplicate key \"name\""lookupUnique :: Text -> Form -> Either Text Texthttp-api-data Web.Internal.FormUrlEncoded Lookup a unique value for a key. Fail if there is zero or more than one value.
>>> lookupUnique "name" [] Left "Could not find key \"name\"" >>> lookupUnique "name" [("name", "Oleg")] Right "Oleg" >>> lookupUnique "name" [("name", "Oleg"), ("name", "David")] Left "Duplicate key \"name\""lookupBoundedEnumOf :: (Bounded a, Enum a, Eq b) => (a -> b) -> b -> Maybe ahttp-api-data Web.Internal.HttpApiData Lookup values based on a precalculated mapping of their representations.
lookupAsc :: TrieSet v -> [Int] -> vregex-tdfa Text.Regex.TDFA.IntArrTrieSet This is the accessor for the Trie. The list of keys should be sorted.