Hoogle Search
Within LTS Haskell 17.4 (ghc-8.10.4)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
base Prelude Boolean "or", lazy in the second argument
(
||| ) :: ArrowChoice a => a b d -> a c d -> a (Either b c) dbase Control.Arrow Fanin: Split the input between the two argument arrows and merge their outputs. The default definition may be overridden with a more efficient version if desired.
-
base Data.Bool Boolean "or", lazy in the second argument
-
base Data.Type.Bool Type-level "or"
-
containers Data.Sequence Add an element to the right end of a sequence. Mnemonic: a triangle with the single element at the pointy end.
-
containers Data.Sequence.Internal Add an element to the right end of a sequence. Mnemonic: a triangle with the single element at the pointy end.
-
hspec Test.Hspec.Discover Boolean "or", lazy in the second argument
-
ghc-prim GHC.Classes Boolean "or", lazy in the second argument
(
|> ) :: Snoc s s a a => s -> a -> slens Control.Lens.Cons snoc an element onto the end of a container. This is an infix alias for snoc.
>>> Seq.fromList [] |> a fromList [a]
>>> Seq.fromList [b, c] |> a fromList [b,c,a]
>>> LazyT.pack "hello" |> '!' "hello!"
(
|> ) :: Snoc s s a a => s -> a -> slens Control.Lens.Operators snoc an element onto the end of a container. This is an infix alias for snoc.
>>> Seq.fromList [] |> a fromList [a]
>>> Seq.fromList [b, c] |> a fromList [b,c,a]
>>> LazyT.pack "hello" |> '!' "hello!"
Page 1 of many | Next