Hoogle Search

Within LTS Haskell 24.28 (ghc-9.10.3)

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

  1. (.:) :: FromJSON a => Object -> Text -> Parser a

    microaeson Data.Aeson.Micro

    No documentation available.

  2. (.:!) :: FromJSON a => Object -> Text -> Parser (Maybe a)

    microaeson Data.Aeson.Micro

    No documentation available.

  3. (.:?) :: FromJSON a => Object -> Text -> Parser (Maybe a)

    microaeson Data.Aeson.Micro

    No documentation available.

  4. (.=) :: ToJSON v => Text -> v -> Pair

    microaeson Data.Aeson.Micro

    A key-value pair for encoding a JSON object.

  5. (.~) :: ASetter s t a b -> b -> s -> t

    reflex-dom-core Reflex.Dom.Widget.Input

    Replace the target of a Lens or all of the targets of a Setter or Traversal with a constant value. This is an infix version of set, provided for consistency with (.=).

    f <$ a ≡ mapped .~ f $ a
    
    >>> (a,b,c,d) & _4 .~ e
    (a,b,c,e)
    
    >>> (42,"world") & _1 .~ "hello"
    ("hello","world")
    
    >>> (a,b) & both .~ c
    (c,c)
    
    (.~) :: Setter s t a b    -> b -> s -> t
    (.~) :: Iso s t a b       -> b -> s -> t
    (.~) :: Lens s t a b      -> b -> s -> t
    (.~) :: Traversal s t a b -> b -> s -> t
    

  6. type (./=) = 'RelOpNEQ

    rerefined Rerefined.Predicates.Operators

    No documentation available.

  7. type (.<) = 'RelOpLT

    rerefined Rerefined.Predicates.Operators

    No documentation available.

  8. type (.<=) = 'RelOpLTE

    rerefined Rerefined.Predicates.Operators

    No documentation available.

  9. type (.==) = 'RelOpEQ

    rerefined Rerefined.Predicates.Operators

    No documentation available.

  10. type (.>) = 'RelOpGT

    rerefined Rerefined.Predicates.Operators

    No documentation available.

Page 39 of many | Previous | Next