Hoogle Search

Within LTS Haskell 24.42 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. (*:*) :: forall (unit :: Rat) . KnownRat unit => RatioNat -> Time unit -> Time unit

    o-clock Time.Timestamp

    Operator version of timeMul.

    >>> 3 *:* sec 5
    15s
    
    >>> 2 *:* 3 *:* sec 5
    30s
    
    >>> 3 *:* 5 *:* sec 7
    105s
    
    >>> ms 2000 +:+ 2 *:* sec 3
    8s
    

  2. (+:+) :: forall (unitResult :: Rat) (unitLeft :: Rat) . KnownDivRat unitLeft unitResult => Time unitLeft -> Time unitResult -> Time unitResult

    o-clock Time.Timestamp

    Sums times of different units.

    >>> minute 1 +:+ sec 1
    61s
    

  3. (-:-) :: forall (unitResult :: Rat) (unitLeft :: Rat) . KnownDivRat unitLeft unitResult => Time unitLeft -> Time unitResult -> Time unitResult

    o-clock Time.Timestamp

    Substracts time amounts of different units. When the minuend is smaller than the subtrahend, this function will throw Underflow :: ArithException.

    >>> minute 1 -:- sec 1
    59s
    

  4. (/:/) :: forall (unit :: Rat) . KnownRat unit => Time unit -> Time unit -> RatioNat

    o-clock Time.Timestamp

    Operator version of timeDiv.

    >>> sec 15 /:/ sec 3
    5 % 1
    

  5. (.:) :: (r -> z) -> (a -> b -> r) -> a -> b -> z

    opaleye Opaleye.Internal.Helpers

    No documentation available.

  6. (.:.) :: (r -> z) -> (a -> b -> c -> r) -> a -> b -> c -> z

    opaleye Opaleye.Internal.Helpers

    No documentation available.

  7. (.::) :: (r -> z) -> (a -> b -> c -> d -> r) -> a -> b -> c -> d -> z

    opaleye Opaleye.Internal.Helpers

    No documentation available.

  8. (.::.) :: (r -> z) -> (a -> b -> c -> d -> e -> r) -> a -> b -> c -> d -> e -> z

    opaleye Opaleye.Internal.Helpers

    No documentation available.

  9. (=:) :: Val v => Label -> v -> Field

    persistent-mongoDB Database.Persist.MongoDB

    Field with given label and typed value

  10. (.:) :: Pinchable a => Value TStruct -> Int16 -> Parser a

    pinch Pinch

    Given a field ID and a Value TStruct, get the value stored in the struct under that field ID. The lookup fails if the field is absent or if it's not the same type as expected by this call's context.

Page 99 of many | Previous | Next