Hoogle Search

Within Stackage Nightly 2026-06-28 (ghc-9.12.4)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. setL :: Lens a b -> b -> a -> a

    data-lens-light Data.Lens.Light

    Get the setter function from a lens

  2. setCriterionLE :: PrimMonad m => ReqSketch (PrimState m) -> m ()

    data-sketches DataSketches.Quantiles.RelativeErrorQuantile

    No documentation available.

  3. setCriterionLT :: PrimMonad m => ReqSketch (PrimState m) -> m ()

    data-sketches DataSketches.Quantiles.RelativeErrorQuantile

    No documentation available.

  4. setExtendedResultCodes :: Database -> Bool -> IO (Either Error ())

    direct-sqlite Database.SQLite3.Direct

    https://www.sqlite.org/c3ref/extended_result_codes.html

  5. setLoadExtensionEnabled :: Database -> Bool -> IO (Either Error ())

    direct-sqlite Database.SQLite3.Direct

    https://www.sqlite.org/c3ref/enable_load_extension.html Enable or disable extension loading.

  6. setSharedCacheEnabled :: Bool -> IO (Either Error ())

    direct-sqlite Database.SQLite3.Direct

    https://www.sqlite.org/c3ref/enable_shared_cache.html Enable or disable shared cache for all future connections.

  7. setTrace :: Database -> Maybe (Utf8 -> IO ()) -> IO ()

    direct-sqlite Database.SQLite3.Direct

    https://www.sqlite.org/c3ref/profile.html Enable/disable tracing of SQL execution. Tracing can be disabled by setting Nothing as the logger callback. Warning: If the logger callback throws an exception, your whole program will crash. Enable only for debugging!

  8. setField :: forall (f :: Symbol) s a . HasField' f s a => a -> s -> s

    generic-optics Data.Generics.Product.Fields

    >>> setField @"age" 60 human
    Human {name = "Tunyasz", age = 60, address = "London", other = False}
    

  9. setPosition :: forall (i :: Nat) s a . HasPosition' i s a => a -> s -> s

    generic-optics Data.Generics.Product.Positions

    >>> setPosition @2 60 human
    Human {name = "Tunyasz", age = 60, address = "London"}
    

  10. setTyped :: HasType a s => a -> s -> s

    generic-optics Data.Generics.Product.Typed

    Set field at type.

Page 70 of many | Previous | Next