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.
(
+. ) :: Offset ty -> Int -> Offset tybasement Basement.Types.OffsetSize No documentation available.
(
!<<. ) :: Bits a => a -> Int -> aghc-internal GHC.Internal.Data.Bits Infix version of unsafeShiftL.
(
!>>. ) :: Bits a => a -> Int -> aghc-internal GHC.Internal.Data.Bits Infix version of unsafeShiftR.
(
#. ) :: Coercible b c => (b -> c) -> (a -> b) -> a -> cghc-internal GHC.Internal.Data.Functor.Utils No documentation available.
newtype ((f :: k2 -> Type)
:.: (g :: k1 -> k2)) (p :: k1)ghc-internal GHC.Internal.Generics Composition of functors
(
^. ) :: s -> FoldLike a s t a b -> alens-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.(
^.. ) :: s -> Fold s t a b -> [a]lens-family Lens.Family2 Returns a list of all of the referenced values in order.
(
!.! ) :: (Numeric r e, Source r e) => Vector r e -> Vector r e -> emassiv Data.Massiv.Array.Numeric Dot product of two vectors.
- Partial Throws an impure exception when lengths of vectors do not match
(
*. ) :: (Index ix, Numeric r e) => e -> Array r ix e -> Array r ix emassiv 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 ]
(
+. ) :: (Index ix, Numeric r e) => e -> Array r ix e -> Array r ix emassiv Data.Massiv.Array.Numeric Add a scalar to each element of the array. Array is on the right.