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.

  1. (>+<) :: FuzzySet -> Text -> FuzzySet

    fuzzyset Data.FuzzySet.Simple

    Infix operator to add entries to a FuzzySet, defined as flip add.

  2. data a :+ b

    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 :+ ())
    

  3. (:+) :: a -> b -> (:+) a b

    generic-functor Generic.Functor.Internal.Implicit

    No documentation available.

  4. data a :+ b

    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 :+ ())
    

  5. (:+) :: a -> b -> (:+) a b

    generic-functor Generic.Functor.Multimap

    No documentation available.

  6. (.++) :: (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
    

  7. (<++>) :: Text -> Text -> [Text] -> Text

    haskoin-store-data Haskoin.Store.WebCommon

    No documentation available.

  8. (<+>) :: Text -> Text -> [Text] -> Text

    haskoin-store-data Haskoin.Store.WebCommon

    No documentation available.

  9. type family (xs :: [a]) <++> (ys :: [a]) :: [a]

    hyperbole Web.Hyperbole.TypeList

    No documentation available.

  10. data a :+ b

    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.

Page 66 of many | Previous | Next