Hoogle Search

Within LTS Haskell 24.6 (ghc-9.10.2)

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

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

    microaeson Data.Aeson.Micro

    A key-value pair for encoding a JSON object.

  2. (.~) :: 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
    

  3. type (./=) = 'RelOpNEQ

    rerefined Rerefined.Predicates.Operators

    No documentation available.

  4. type (.<) = 'RelOpLT

    rerefined Rerefined.Predicates.Operators

    No documentation available.

  5. type (.<=) = 'RelOpLTE

    rerefined Rerefined.Predicates.Operators

    No documentation available.

  6. type (.==) = 'RelOpEQ

    rerefined Rerefined.Predicates.Operators

    No documentation available.

  7. type (.>) = 'RelOpGT

    rerefined Rerefined.Predicates.Operators

    No documentation available.

  8. type (.>=) = 'RelOpGTE

    rerefined Rerefined.Predicates.Operators

    No documentation available.

  9. (.+) :: RuntimeTerm -> RuntimeTerm -> RuntimeTerm

    rest-rewrite DSL

    No documentation available.

  10. type family (r :: Row k) .! (t :: Symbol) :: k

    row-types Data.Row

    Type level label fetching

Page 36 of many | Previous | Next