Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

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

  1. (:&:) :: WSType -> WSType -> WSType

    xmonad-contrib XMonad.Actions.CycleWS

    cycle through workspaces satisfying both predicates.

  2. (:|:) :: WSType -> WSType -> WSType

    xmonad-contrib XMonad.Actions.CycleWS

    cycle through workspaces satisfying one of the predicates.

  3. (:|) :: a -> [a] -> NonEmpty a

    xmonad-contrib XMonad.Prelude

    No documentation available.

  4. (:~) :: a -> Stream a -> Stream a

    xmonad-contrib XMonad.Prelude

    No documentation available.

  5. (.:) :: FromJSON a => Object -> Key -> Parser a

    aeson Data.Aeson

    Retrieve the value associated with the given key of an Object. The result is empty if the key is not present or the value cannot be converted to the desired type. This accessor is appropriate if the key and value must be present in an object for it to be valid. If the key and value are optional, use .:? instead.

  6. (.:!) :: FromJSON a => Object -> Key -> Parser (Maybe a)

    aeson Data.Aeson

    Retrieve the value associated with the given key of an Object. The result is Nothing if the key is not present or empty if the value cannot be converted to the desired type. This differs from .:? by attempting to parse Null the same as any other JSON value, instead of interpreting it as Nothing.

  7. (.:!=) :: FromJSON a => Object -> Key -> Parser a

    aeson Data.Aeson

    Retrieve the value associated with the given key of an Object. If the key is not present and the omittedField is Just x for some x, the result will be that x. This differs from .:?= by attempting to parse Null the same as any other JSON value, instead of using omittedField when it's Just.

  8. (.:?) :: FromJSON a => Object -> Key -> Parser (Maybe a)

    aeson Data.Aeson

    Retrieve the value associated with the given key of an Object. The result is Nothing if the key is not present or if its value is Null, or empty if the value cannot be converted to the desired type. This accessor is most useful if the key and value can be absent from an object without affecting its validity. If the key and value are mandatory, use .: instead.

  9. (.:?=) :: FromJSON a => Object -> Key -> Parser a

    aeson Data.Aeson

    Retrieve the value associated with the given key of an Object. If the key is not present or the field is null and the omittedField is Just x for some x, the result will be that x.

  10. (.:) :: FromJSON a => Object -> Key -> Parser a

    aeson Data.Aeson.Types

    Retrieve the value associated with the given key of an Object. The result is empty if the key is not present or the value cannot be converted to the desired type. This accessor is appropriate if the key and value must be present in an object for it to be valid. If the key and value are optional, use .:? instead.

Page 73 of many | Previous | Next