Hoogle Search
Within LTS Haskell 24.46 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
setSpanId' :: SpanInFlight -> SpanId -> Stringopentelemetry OpenTelemetry.Eventlog_Internal No documentation available.
setTag' :: SpanInFlight -> String -> ByteString -> Stringopentelemetry OpenTelemetry.Eventlog_Internal No documentation available.
setTraceId' :: SpanInFlight -> TraceId -> Stringopentelemetry OpenTelemetry.Eventlog_Internal No documentation available.
-
optics-extra Data.HashSet.Optics Construct a HashSet from a fold.
>>> setOf folded ["hello","world"] fromList ["hello","world"]
>>> setOf (folded % _2) [("hello",1),("world",2),("!!!",3)] fromList [1,2,3] setmapped :: (Eq b, Hashable b) => Setter (HashSet a) (HashSet b) a boptics-extra Data.HashSet.Optics This Setter can be used to change the type of a HashSet by mapping the elements to new values. Sadly, you can't create a valid Traversal for a HashSet, but you can manipulate it by reading using folded and reindexing it via setmapped.
>>> over setmapped (+1) (HashSet.fromList [1,2,3,4]) fromList [2,3,4,5]
setUserPassword :: File -> ByteString -> IO Boolpdf-toolbox-core Pdf.Core Set user password to decrypt PDF file. Use empty bytestring to set the default password. Returns True on success. See also setDecryptor.
setDecryptor :: File -> Decryptor -> IO ()pdf-toolbox-core Pdf.Core.File Decrypt file using the specified decryptor. Use it if setUserPassword doesn't work for you.
setUserPassword :: File -> ByteString -> IO Boolpdf-toolbox-core Pdf.Core.File Set user password to decrypt PDF file. Use empty bytestring to set the default password. Returns True on success. See also setDecryptor.
setGauge :: MonadMonitor m => Gauge -> Double -> m ()prometheus-client Prometheus Sets a gauge metric to a specific value.
setGaugeToDuration :: (MonadIO m, MonadMonitor m) => Gauge -> m a -> m aprometheus-client Prometheus Sets a gauge metric to the duration in seconds of an IO action.