Hoogle Search

Within Stackage Nightly 2025-09-26 (ghc-9.12.2)

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

  1. setYearWoY :: Calendar -> Int -> Calendar

    text-icu Data.Text.ICU.Calendar

    No documentation available.

  2. setZoneOffset :: Calendar -> Int -> Calendar

    text-icu Data.Text.ICU.Calendar

    No documentation available.

  3. setText :: ByteString -> CharsetDetector -> IO ()

    text-icu Data.Text.ICU.CharsetDetection

    From the ICU C API documentation: "Character set detection is at best an imprecise operation. The detection process will attempt to identify the charset that best matches the characteristics of the byte data, but the process is partly statistical in nature, and the results can not be guaranteed to always be correct. For best accuracy in charset detection, the input data should be primarily in a single language, and a minimum of a few hundred bytes worth of plain text in the language are needed. The detection process will attempt to ignore html or xml style markup that could otherwise obscure the content." Use the first 512 bytes, if available, as the text in the CharsetDetector object. This function is low-level and used by the more high-level detect function.

  4. setAttribute :: MCollator -> Attribute -> IO ()

    text-icu Data.Text.ICU.Collate

    Set the value of an MCollator attribute.

  5. setDefaultName :: String -> IO ()

    text-icu Data.Text.ICU.Convert

    Sets the current default converter name. If this function needs to be called, it should be called during application initialization. Most of the time, the results from getDefaultName or open with an empty string argument is sufficient for your application. Note: this function is not thread safe. Do not call this function when any ICU function is being used from more than one thread!

  6. setText :: Regex -> Text -> IO ()

    text-icu Data.Text.ICU.Regex

    Set the subject text string upon which the regular expression will look for matches. This function may be called any number of times, allowing the regular expression pattern to be applied to different strings.

  7. setAllowedLocales :: MSpoof -> [String] -> IO ()

    text-icu Data.Text.ICU.Spoof

    Get the list of locale names allowed to be used with a spoof checker. (We don't use LocaleName since the root and default locales have no meaning here.)

  8. setChecks :: MSpoof -> [SpoofCheck] -> IO ()

    text-icu Data.Text.ICU.Spoof

    Configure the checks performed by a spoof checker.

  9. setRestrictionLevel :: MSpoof -> RestrictionLevel -> IO ()

    text-icu Data.Text.ICU.Spoof

    Configure the restriction level of a spoof checker.

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

    generic-lens Data.Generics.Product.Fields

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

Page 45 of many | Previous | Next