Hoogle Search
Within LTS Haskell 24.33 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
(
>+< ) :: FuzzySet -> Text -> FuzzySetfuzzyset Data.FuzzySet.Simple Infix operator to add entries to a FuzzySet, defined as flip add.
-
generic-functor Generic.Functor.Internal.Implicit Heterogeneous lists of arrows are constructed as lists separated by (:+) and terminated by ().
Example
Given f :: a -> a' and g :: b -> b', (f :+ g :+ ()) is a list with the two elements f and g.if f :: a -> a' g :: b -> b' then f :+ g :+ () :: (a -> a') :+ (b -> b') :+ ()
Those lists are used by gmultimap and multimap.bimap_ :: (a -> a') -> (b -> b') -> (Maybe a, [Either b a]) -> (Maybe a', [Either b' a']) bimap_ f g = multimap (f :+ g :+ ())
-
generic-functor Generic.Functor.Internal.Implicit No documentation available.
-
generic-functor Generic.Functor.Multimap Heterogeneous lists of arrows are constructed as lists separated by (:+) and terminated by ().
Example
Given f :: a -> a' and g :: b -> b', (f :+ g :+ ()) is a list with the two elements f and g.if f :: a -> a' g :: b -> b' then f :+ g :+ () :: (a -> a') :+ (b -> b') :+ ()
Those lists are used by gmultimap and multimap.bimap_ :: (a -> a') -> (b -> b') -> (Maybe a, [Either b a]) -> (Maybe a', [Either b' a']) bimap_ f g = multimap (f :+ g :+ ())
-
generic-functor Generic.Functor.Multimap No documentation available.
(
.++ ) :: (Int, Hex) -> (Int, Hex) -> (Int, Hex)ghci-hexcalc Data.GHex Concatinate pairs of (length,Hex)
>>> (3,0b101) .++ (2,0b11) (5,0x0000_0000_0000_0017) >>> (4,0xa) .++ (4,0xb) .++ (8,0xcd) (16,0x0000_0000_0000_abcd) >>> (4,0xe) .++ (4,0xf) .@snd 0x0000_0000_0000_00ef
(
<++> ) :: Text -> Text -> [Text] -> Texthaskoin-store-data Haskoin.Store.WebCommon No documentation available.
(
<+> ) :: Text -> Text -> [Text] -> Texthaskoin-store-data Haskoin.Store.WebCommon No documentation available.
type family (xs :: [a])
<++> (ys :: [a]) :: [a]hyperbole Web.Hyperbole.TypeList No documentation available.
-
identicon Graphics.Identicon The (:+) type operator is used to attach Consumers to Identicon, thus adding layers to it and exhausting the bytes that are available for identicon generation. An example of identicon that can be generated from 16 byte hash is shown below:
type Icon = Identicon 16 :+ Consumer 5 :+ Consumer 5 :+ Consumer 6
The identicon above has three layers.