Hoogle Search
Within LTS Haskell 24.52 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
sRGB24read :: (Ord b, Floating b) => String -> Colour bcolour Data.Colour.SRGB Read a colour in hexadecimal form, e.g. "#00aaff" or "00aaff"
sRGB24reads :: (Ord b, Floating b) => ReadS (Colour b)colour Data.Colour.SRGB Read a colour in hexadecimal form, e.g. "#00aaff" or "00aaff"
-
yesod-core Yesod.Core A type-safe, concise method of creating breadcrumbs for pages. For each resource, you declare the title of the page and the parent resource (if present).
breadcrumb :: YesodBreadcrumbs site => Route site -> HandlerFor site (Text, Maybe (Route site))yesod-core Yesod.Core Returns the title and the parent resource, if available. If you return a Nothing, then this is considered a top-level page.
-
yesod-core Yesod.Core Gets the title of the current page and the hierarchy of parent pages, along with their respective titles.
setReadDerived :: Bool -> RouteOpts -> RouteOptsyesod-core Yesod.Core.Dispatch No documentation available.
alreadyExpired :: MonadHandler m => m ()yesod-core Yesod.Core.Handler Set an Expires header in the past, meaning this content should not be cached.
setOwnerReadable :: Bool -> Permissions -> Permissionspath-io Path.IO No documentation available.
forkPingThread :: Connection -> Int -> IO ()websockets Network.WebSockets Deprecated: Use withPingThread instead
withPingThread :: Connection -> Int -> IO () -> IO a -> IO awebsockets Network.WebSockets Forks a ping thread, sending a ping message every n seconds over the connection. The thread is killed when the inner IO action is finished. This is useful to keep idle connections open through proxies and whatnot. Many (but not all) proxies have a 60 second default timeout, so based on that sending a ping every 30 seconds is a good idea. Note that usually you want to use withPingPong to timeout the connection if a pong is not received.