Hoogle Search

Within LTS Haskell 24.27 (ghc-9.10.3)

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

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

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

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

    protolude Protolude

    Bitwise "and"

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

    protolude Protolude

    Bitwise "or"

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

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

    vector-space Data.AffineSpace

    Point plus vector

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

    vector-space Data.AffineSpace

    Subtract points

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

    vector-space Data.AffineSpace

    Point minus vector

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

    HsYAML Data.YAML

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

  10. (.:) :: FromYAML a => Mapping Pos -> Text -> Parser a

    HsYAML Data.YAML

    Retrieve value in Mapping indexed by a !!str Text key. This parser fails if the key doesn't exist.

Page 24 of many | Previous | Next