Hoogle Search

Within LTS Haskell 24.51 (ghc-9.10.3)

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

  1. (.^^) :: (Index ix, Numeric r e, Fractional e, Integral b) => Array r ix e -> b -> Array r ix e

    massiv Data.Massiv.Array.Numeric

    No documentation available.

  2. (...) :: Index ix => ix -> ix -> Array D ix ix

    massiv Data.Massiv.Vector

    Handy synonym for rangeInclusive Seq. Similar to .. for list.

    >>> Ix1 4 ... 10
    Array D Seq (Sz1 7)
    [ 4, 5, 6, 7, 8, 9, 10 ]
    

  3. (..:) :: Index ix => ix -> ix -> Array D ix ix

    massiv Data.Massiv.Vector

    Handy synonym for range Seq

    >>> Ix1 4 ..: 10
    Array D Seq (Sz1 6)
    [ 4, 5, 6, 7, 8, 9 ]
    

  4. (.&.) :: Bits a => a -> a -> a

    protolude Protolude

    Bitwise "and"

  5. (.|.) :: Bits a => a -> a -> a

    protolude Protolude

    Bitwise "or"

  6. (.:??) :: FromJSON a => Object -> Text -> Parser (Maybe a)

    webdriver Test.WebDriver.JSON

    Due to a breaking change in the .:? operator of aeson 0.10 (see https://github.com/bos/aeson/issues/287) that was subsequently reverted, this operator was added to provide consistent behavior compatible with all aeson versions. If the field is either missing or Null, this operator should return a Nothing result.

  7. (.+^) :: AffineSpace p => p -> Diff p -> p

    vector-space Data.AffineSpace

    Point plus vector

  8. (.-.) :: AffineSpace p => p -> p -> Diff p

    vector-space Data.AffineSpace

    Subtract points

  9. (.-^) :: AffineSpace p => p -> Diff p -> p

    vector-space Data.AffineSpace

    Point minus vector

  10. (.!=) :: Parser (Maybe a) -> a -> Parser a

    HsYAML Data.YAML

    Defaulting helper to be used with .:? or .:!.

Page 24 of many | Previous | Next