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

    qchas QC

    forms a complex number from its real and imaginary rectangular components.

  2. (*=+) :: a -> a -> Range a

    range Data.Range

    Mathematically equivalent to (x, y]. x *=+ y is the short version of SpanRange (Bound x Exclusive) (Bound y Inclusive)

  3. (*=+) :: a -> a -> Ranges a

    range Data.Ranges

    Mathematically equivalent to (x, y]. See *=+ for details.

  4. (:+) :: forall (a :: Nat) (b :: Nat) c . (1 <= a, 1 <= b) => RangeR (a - 1) (b - 1) c -> c -> RangeR a b c

    ranged-list Data.List.Length

    No documentation available.

  5. (.:++) :: PushR n m => RangeR n (m - 1) a -> a -> RangeR n m a

    ranged-list Data.List.Range

    To push an optional element.

    >>> :set -XDataKinds
    
    >>> samplePushR = NilR :++ 'h' :+ 'e' :+ 'l' :+ 'l' :: RangeR 3 7 Char
    
    >>> samplePushR .:++ 'o'
    ((((NilR :++ 'h') :++ 'e') :+ 'l') :+ 'l') :+ 'o'
    
    >>> :type samplePushR .:++ 'o'
    samplePushR .:++ 'o' :: RangeR 3 8 Char
    

  6. (:+) :: forall (a :: Nat) (b :: Nat) c . (1 <= a, 1 <= b) => RangeR (a - 1) (b - 1) c -> c -> RangeR a b c

    ranged-list Data.List.Range

    No documentation available.

  7. (^+^) :: (Inner u v, Unbox a, Num a) => u a -> v a -> v a

    rp-tree Data.RPTree

    No documentation available.

  8. type (:+:) = Sum

    rzk Free.Scoped

    No documentation available.

  9. data a :+ b

    scanf Text.Scanf

    A pretty pair type to build lists with values of different types. Remember to close lists with ().

    3 :+ "14" :+ () :: Int :+ String :+ ()
    

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

    scanf Text.Scanf

    No documentation available.

Page 70 of many | Previous | Next