Hoogle Search

Within LTS Haskell 24.41 (ghc-9.10.3)

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

  1. setScannerConfigScanIdentifier :: MonadIO m => ScannerConfig -> Word32 -> m ()

    gi-glib GI.GLib.Structs.ScannerConfig

    Set the value of the “scan_identifier” field. When overloading is enabled, this is equivalent to

    set scannerConfig [ #scanIdentifier := value ]
    

  2. setScannerConfigScanIdentifier1char :: MonadIO m => ScannerConfig -> Word32 -> m ()

    gi-glib GI.GLib.Structs.ScannerConfig

    Set the value of the “scan_identifier_1char” field. When overloading is enabled, this is equivalent to

    set scannerConfig [ #scanIdentifier1char := value ]
    

  3. setScannerConfigScanIdentifierNULL :: MonadIO m => ScannerConfig -> Word32 -> m ()

    gi-glib GI.GLib.Structs.ScannerConfig

    Set the value of the “scan_identifier_NULL” field. When overloading is enabled, this is equivalent to

    set scannerConfig [ #scanIdentifierNULL := value ]
    

  4. sequenceRangeGetMidpoint :: (HasCallStack, MonadIO m) => SequenceIter -> SequenceIter -> m SequenceIter

    gi-glib GI.GLib.Structs.Sequence

    Finds an iterator somewhere in the range (begin, end). This iterator will be close to the middle of the range, but is not guaranteed to be exactly in the middle. The begin and end iterators must both point to the same sequence and begin must come before or be equal to end in the sequence. Since: 2.14

  5. sourceGetId :: (HasCallStack, MonadIO m) => Source -> m Word32

    gi-glib GI.GLib.Structs.Source

    Returns the numeric ID for a particular source. The ID of a source is a positive integer which is unique within a particular main loop context. The reverse mapping from ID to source is done by mainContextFindSourceById. You can only call this function while the source is associated to a MainContext instance; calling this function before sourceAttach or after sourceDestroy yields undefined behavior. The ID returned is unique within the MainContext instance passed to sourceAttach.

  6. sourceSetNameById :: (HasCallStack, MonadIO m) => Word32 -> Text -> m ()

    gi-glib GI.GLib.Structs.Source

    Sets the name of a source using its ID. This is a convenience utility to set source names from the return value of g_idle_add(), g_timeout_add(), etc. It is a programmer error to attempt to set the name of a non-existent source. More specifically: source IDs can be reissued after a source has been destroyed and therefore it is never valid to use this function with a source ID which may have already been removed. An example is when scheduling an idle to run in another thread with g_idle_add(): the idle may already have run and been removed by the time this function is called on its (now invalid) source ID. This source ID may have been reissued, leading to the operation being performed against the wrong source. Since: 2.26

  7. stringAsciiDown :: (HasCallStack, MonadIO m) => String -> m String

    gi-glib GI.GLib.Structs.String

    Converts all uppercase ASCII letters to lowercase ASCII letters.

  8. threadPoolGetMaxIdleTime :: (HasCallStack, MonadIO m) => m Word32

    gi-glib GI.GLib.Structs.ThreadPool

    This function will return the maximum interval that a thread will wait in the thread pool for new tasks before being stopped. If this function returns 0, threads waiting in the thread pool for new work are not stopped. Since: 2.10

  9. threadPoolSetMaxIdleTime :: (HasCallStack, MonadIO m) => Word32 -> m ()

    gi-glib GI.GLib.Structs.ThreadPool

    This function will set the maximum interval that a thread waiting in the pool for new tasks can be idle for before being stopped. This function is similar to calling threadPoolStopUnusedThreads on a regular timeout, except this is done on a per thread basis. By setting interval to 0, idle threads will not be stopped. The default value is 15000 (15 seconds). Since: 2.10

  10. timeZoneGetIdentifier :: (HasCallStack, MonadIO m) => TimeZone -> m Text

    gi-glib GI.GLib.Structs.TimeZone

    Get the identifier of this TimeZone, as passed to timeZoneNew. If the identifier passed at construction time was not recognised, UTC will be returned. If it was Nothing, the identifier of the local timezone at construction time will be returned. The identifier will be returned in the same format as provided at construction time: if provided as a time offset, that will be returned by this function. Since: 2.58

Page 646 of many | Previous | Next