Hoogle Search

Within LTS Haskell 24.20 (ghc-9.10.3)

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

  1. (+.) :: Offset ty -> Int -> Offset ty

    basement Basement.Types.OffsetSize

    No documentation available.

  2. (!<<.) :: Bits a => a -> Int -> a

    ghc-internal GHC.Internal.Data.Bits

    Infix version of unsafeShiftL.

  3. (!>>.) :: Bits a => a -> Int -> a

    ghc-internal GHC.Internal.Data.Bits

    Infix version of unsafeShiftR.

  4. ( #. ) :: Coercible b c => (b -> c) -> (a -> b) -> a -> c

    ghc-internal GHC.Internal.Data.Functor.Utils

    No documentation available.

  5. newtype ((f :: k2 -> Type) :.: (g :: k1 -> k2)) (p :: k1)

    ghc-internal GHC.Internal.Generics

    Composition of functors

  6. (^.) :: s -> FoldLike a s t a b -> a

    lens-family Lens.Family2

    (^.) :: s -> Getter s t a b -> a
    
    Access the value referenced by a getter or lens.
    (^.) :: Monoid a => s -> Fold s t a b -> a
    
    Access the monoidal summary referenced by a traversal or a fold.

  7. (^..) :: s -> Fold s t a b -> [a]

    lens-family Lens.Family2

    Returns a list of all of the referenced values in order.

  8. (!.!) :: (Numeric r e, Source r e) => Vector r e -> Vector r e -> e

    massiv Data.Massiv.Array.Numeric

    Dot product of two vectors.

    • Partial Throws an impure exception when lengths of vectors do not match

  9. (*.) :: (Index ix, Numeric r e) => e -> Array r ix e -> Array r ix e

    massiv Data.Massiv.Array.Numeric

    Multiply each element of the array by a scalar value. Scalar is on the left.

    Example

    >>> let arr = Ix1 20 ..: 25
    
    >>> arr
    Array D Seq (Sz1 5)
    [ 20, 21, 22, 23, 24 ]
    
    >>> 10 *. arr
    Array D Seq (Sz1 5)
    [ 200, 210, 220, 230, 240 ]
    

  10. (+.) :: (Index ix, Numeric r e) => e -> Array r ix e -> Array r ix e

    massiv Data.Massiv.Array.Numeric

    Add a scalar to each element of the array. Array is on the right.

Page 113 of many | Previous | Next