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.

  1. data ((f :: k -> Type) :+: (g :: k -> Type)) (e :: k)

    free-alacarte Free.AlaCarte

    No documentation available.

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

    fuzzyset Data.FuzzySet.Simple

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

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

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

    generic-functor Generic.Functor.Internal.Implicit

    No documentation available.

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

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

    generic-functor Generic.Functor.Multimap

    No documentation available.

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

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

    haskoin-store-data Haskoin.Store.WebCommon

    No documentation available.

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

    haskoin-store-data Haskoin.Store.WebCommon

    No documentation available.

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

    hyperbole Web.Hyperbole.TypeList

    No documentation available.

Page 66 of many | Previous | Next