Hoogle Search

Within LTS Haskell 24.37 (ghc-9.10.3)

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

  1. (.<|) :: Char -> Buffer % 1 -> Buffer

    text-builder-linear Data.Text.Builder.Linear.Buffer

    Prepend Char to a Buffer by mutating it.

    >>> :set -XLinearTypes
    
    >>> runBuffer (\b -> 'q' .<| 'w' .<| b)
    "qw"
    
    Warning: In contrast to singleton, it is the responsibility of the caller to sanitize surrogate code points with safe.

  2. (.~) :: ((a -> Identity b) -> s -> Identity t) -> b -> s -> t

    generic-lens Data.Generics.Internal.VL

    No documentation available.

  3. (.~) :: Setter s t a b -> b -> s -> t

    lens-family Lens.Family2

    Set all referenced fields to the given value.

  4. (.=) :: MonadState s m => Setter s s a b -> b -> m ()

    lens-family Lens.Family2.State.Lazy

    Set a field of the state.

  5. (.=) :: MonadState s m => Setter s s a b -> b -> m ()

    lens-family Lens.Family2.State.Strict

    Set a field of the state.

  6. (.&.) :: Bits a => a -> a -> a

    ghc-internal GHC.Internal.Bits

    Bitwise "and"

  7. (.|.) :: Bits a => a -> a -> a

    ghc-internal GHC.Internal.Bits

    Bitwise "or"

  8. (.&.) :: Bits a => a -> a -> a

    ghc-internal GHC.Internal.Data.Bits

    Bitwise "and"

  9. (.<<.) :: Bits a => a -> Int -> a

    ghc-internal GHC.Internal.Data.Bits

    Infix version of shiftL.

  10. (.>>.) :: Bits a => a -> Int -> a

    ghc-internal GHC.Internal.Data.Bits

    Infix version of shiftR.

Page 21 of many | Previous | Next