Hoogle Search
Within LTS Haskell 24.6 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
reversePredefinedRefs :: Map Text Textxmlhtml Text.XmlHtml.HTML.Meta Reverse lookup of Html entities. The values in this map should be the "canonical" entity names that are most widely support by browsers, email clients, etc. If you encounter a situation where the value in this map is not the most widely supported, please open a pull request to change the order in the appropriate ent2names table below.
reverseFileMap :: MonadLsp config m => m (FilePath -> FilePath)lsp Language.LSP.Server If the contents of a VFS has been dumped to a temporary file, map the temporary file name back to the original one.
reverseMap :: VFSData -> !Map FilePath FilePathlsp Language.LSP.Server No documentation available.
reverseSortEdit :: WorkspaceEdit -> WorkspaceEditlsp Language.LSP.Server The changes in a workspace edit should be applied from the end of the file toward the start. Sort them into this order.
reverseDown :: SortedList (Down a) -> SortedList asorted-list Data.SortedList O(n). Reverse a sorted list with elements embedded in the Down type. Only available from base version 4.6.0.0.
reverseBits :: Vector Bit -> Vector Bitbitvec Data.Bit Reverse the order of bits.
>>> :set -XOverloadedLists >>> reverseBits [1,1,0,1,0] [0,1,0,1,1]
Consider using the vector-rotcev package to reverse vectors in O(1) time.reverseInPlace :: PrimMonad m => MVector (PrimState m) Bit -> m ()bitvec Data.Bit Reverse the order of bits in-place.
>>> :set -XOverloadedLists >>> Data.Vector.Unboxed.modify reverseInPlace [1,1,0,1,0] [0,1,0,1,1]
Consider using the vector-rotcev package to reverse vectors in O(1) time.reverseBits :: Vector Bit -> Vector Bitbitvec Data.Bit.ThreadSafe Reverse the order of bits.
>>> :set -XOverloadedLists >>> reverseBits [1,1,0,1,0] [0,1,0,1,1]
Consider using the vector-rotcev package to reverse vectors in O(1) time.reverseInPlace :: PrimMonad m => MVector (PrimState m) Bit -> m ()bitvec Data.Bit.ThreadSafe Reverse the order of bits in-place.
>>> :set -XOverloadedLists >>> Data.Vector.Unboxed.modify reverseInPlace [1,1,0,1,0] [0,1,0,1,1]
Consider using the vector-rotcev package to reverse vectors in O(1) time.reverseProxy :: forall a' a b' b (e :: Effects) . Proxy a' a b' b e -> Proxy b b' a a' ebluefin-internal Bluefin.Internal.Pipes No documentation available.