Hoogle Search
Within LTS Haskell 24.49 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
pipes Pipes.Core Equivalent to (>+>) with the arguments flipped
-
pipes Pipes.Core Equivalent to (+>>) with the arguments flipped
-
pipes Pipes.Core Compose two proxies blocked in the middle of responding, creating a new proxy blocked in the middle of responding
(f >+> g) x = f +>> g x
(>+>) is the composition operator of the pull category. type family (l1 :: [Type])
.++ (l2 :: [Type]) :: [Type]servant-server Servant.Server Append two type-level lists. Import it as
import Servant.API.TypeLevel.List (type (.++))
(
.++ ) :: forall (l1 :: [Type]) (l2 :: [Type]) . Context l1 -> Context l2 -> Context (l1 .++ l2)servant-server Servant.Server Append two contexts.
(
.++ ) :: forall (l1 :: [Type]) (l2 :: [Type]) . Context l1 -> Context l2 -> Context (l1 .++ l2)servant-server Servant.Server.Internal.Context Append two contexts.
(
:=+ ) :: (c -> f) -> [Annotate ann] -> Annotate anncmdargs System.Console.CmdArgs.Annotate Add annotations to a field.
(
.+^ ) :: (Affine p, Num a) => p a -> Diff p a -> p alinear Linear.Affine Add a vector offset to a point.
(
!+! ) :: (Additive m, Additive n, Num a) => m (n a) -> m (n a) -> m (n a)linear Linear.Matrix Entry-wise matrix addition.
>>> V2 (V3 1 2 3) (V3 4 5 6) !+! V2 (V3 7 8 9) (V3 1 2 3) V2 (V3 8 10 12) (V3 5 7 9)
(
^+^ ) :: (Additive f, Num a) => f a -> f a -> f alinear Linear.Vector Compute the sum of two vectors
>>> V2 1 2 ^+^ V2 3 4 V2 4 6