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. setPropertyValue :: IsValue a => Client -> MethodCall -> a -> IO (Maybe MethodError)

    dbus DBus.Client

    Set a property using the standard "org.freedesktop.DBus.Properties.Set" method. The interface and property name are given by the methodCallInterface and methodCallMember fields of the supplied MethodCall. See setProperty for a version that accepts a Variant. Throws a ClientError if the property request couldn't be sent.

  2. setMethodCallFlags :: MethodCall -> Word8 -> MethodCall

    dbus DBus.Internal.Message

    No documentation available.

  3. setSingletonConstructors :: SingletonConstructors -> InterpretOptions -> InterpretOptions

    dhall Dhall.Deriving

    setSingletonConstructors v options replaces the singletonConstructors from options with v.

  4. setFileMode :: FilePath -> FileMode -> IO ()

    dhall Dhall.DirectoryTree

    A wrapper around setFileMode. On Windows, it does check the resulting file mode of the file/directory and emits a warning if it doesn't match the desired file mode. On all other OS it is identical to setFileMode as it is assumed to work correctly.

  5. setFromDistinctList :: (Ord a, Show a) => Decoder a -> Decoder (Set a)

    dhall Dhall.Marshal.Decode

    Decode a Set from a List with distinct elements.

    >>> input (setFromDistinctList natural) "[1, 2, 3]"
    fromList [1,2,3]
    
    An error is thrown if the list contains duplicates.
    >>> input (setFromDistinctList natural) "[1, 1, 3]"
    *** Exception: Error: Failed extraction
    
    The expression type-checked successfully but the transformation to the target
    type failed with the following error:
    
    One duplicate element in the list: 1
    
    >>> input (setFromDistinctList natural) "[1, 1, 3, 3]"
    *** Exception: Error: Failed extraction
    
    The expression type-checked successfully but the transformation to the target
    type failed with the following error:
    
    2 duplicates were found in the list, including 1
    

  6. setIgnoringDuplicates :: Ord a => Decoder a -> Decoder (Set a)

    dhall Dhall.Marshal.Decode

    Decode a Set from a List.

    >>> input (setIgnoringDuplicates natural) "[1, 2, 3]"
    fromList [1,2,3]
    
    Duplicate elements are ignored.
    >>> input (setIgnoringDuplicates natural) "[1, 1, 3]"
    fromList [1,3]
    

  7. setOffset :: MonadParsec e s m => Int -> m ()

    dhall Dhall.Parser.Expression

    Set the current source offset

  8. setBit :: Bits a => a -> Int -> a

    foundation Foundation.Bits

    x `setBit` i is the same as x .|. bit i

  9. setObjectAccessibleDescription :: (MonadIO m, IsObject o) => o -> Text -> m ()

    gi-atk GI.Atk.Objects.Object

    Set the value of the “accessible-description” property. When overloading is enabled, this is equivalent to

    set object [ #accessibleDescription := value ]
    

  10. setObjectAccessibleHelpText :: (MonadIO m, IsObject o) => o -> Text -> m ()

    gi-atk GI.Atk.Objects.Object

    Set the value of the “accessible-help-text” property. When overloading is enabled, this is equivalent to

    set object [ #accessibleHelpText := value ]
    

Page 401 of many | Previous | Next