Hoogle Search
Within LTS Haskell 24.36 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
lookupInstance :: [TypeclassInstance] -> Name -> Maybe TypeclassInstanceth-reify-many Language.Haskell.TH.ReifyMany.Internal Returns the first TypeclassInstance where instanceMatches returns true.
lookupBit :: Addr# -> Int -> Int -> Boolunicode-data Unicode.Internal.Bits lookupBit addr byteIndex bitIndex looks up the bit stored in the byte at index byteIndex at the bit index bitIndex using a bitmap starting at the address addr. The caller must make sure that the byte at address (addr + byteIndex) is legally accessible memory.
lookupWord16AsInt :: Addr# -> Int -> Intunicode-data Unicode.Internal.Bits No documentation available.
lookupWord16AsInt# :: Addr# -> Int# -> Int#unicode-data Unicode.Internal.Bits No documentation available.
lookupWord32# :: Addr# -> Int# -> Word#unicode-data Unicode.Internal.Bits lookupWord32# addr index looks up for the index-th 32-bits word in the bitmap starting at addr, then convert it to a Word#. The caller must make sure that:
- ceiling (addr + (n * 32)) is legally accessible Word32#.
lookupWord8AsInt :: Addr# -> Int -> Intunicode-data Unicode.Internal.Bits lookupWord8AsInt addr index looks up for the index-th 8-bits word in the bitmap starting at addr, then convert it to an Int. The caller must make sure that:
- ceiling (addr + (n * 8)) is legally accessible Word8#.
lookupWord8AsInt# :: Addr# -> Int# -> Int#unicode-data Unicode.Internal.Bits No documentation available.
-
vector-hashtables Data.Vector.Hashtables O(1) in the best case, O(n) in the worst case. Find value by given key in Dictionary. Throws an error if value not found.
-
vector-hashtables Data.Vector.Hashtables.Internal O(1) in the best case, O(n) in the worst case. Find value by given key in Dictionary. Throws an error if value not found.
-
vector-hashtables Data.Vector.Hashtables.Internal O(1) in the best case, O(n) in the worst case. Lookup the index of a key, which is its zero-based index in the sequence sorted by keys. The index is a number from 0 up to, but not including, the size of the dictionary.