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.

  1. setSpanId' :: SpanInFlight -> SpanId -> String

    opentelemetry OpenTelemetry.Eventlog_Internal

    No documentation available.

  2. setTag' :: SpanInFlight -> String -> ByteString -> String

    opentelemetry OpenTelemetry.Eventlog_Internal

    No documentation available.

  3. setTraceId' :: SpanInFlight -> TraceId -> String

    opentelemetry OpenTelemetry.Eventlog_Internal

    No documentation available.

  4. setOf :: forall k a (is :: IxList) s . (Is k A_Fold, Eq a, Hashable a) => Optic' k is s a -> s -> HashSet a

    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]
    

  5. setmapped :: (Eq b, Hashable b) => Setter (HashSet a) (HashSet b) a b

    optics-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]
    

  6. setUserPassword :: File -> ByteString -> IO Bool

    pdf-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.

  7. 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.

  8. setUserPassword :: File -> ByteString -> IO Bool

    pdf-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.

  9. setGauge :: MonadMonitor m => Gauge -> Double -> m ()

    prometheus-client Prometheus

    Sets a gauge metric to a specific value.

  10. setGaugeToDuration :: (MonadIO m, MonadMonitor m) => Gauge -> m a -> m a

    prometheus-client Prometheus

    Sets a gauge metric to the duration in seconds of an IO action.

Page 447 of many | Previous | Next