Hoogle Search

Within LTS Haskell 24.37 (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 range Seq

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

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

    protolude Protolude

    Bitwise "and"

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

    protolude Protolude

    Bitwise "or"

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

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

    vector-space Data.AffineSpace

    Point plus vector

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

    vector-space Data.AffineSpace

    Subtract points

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

    vector-space Data.AffineSpace

    Point minus vector

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

    HsYAML Data.YAML

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

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

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

    HsYAML Data.YAML

    Retrieve optional value in Mapping indexed by a !!str Text key. Nothing is returned if the key is missing. This combinator only fails if the key exists but cannot be converted to the required type. NOTE: This is a variant of .:? which doesn't map a tag:yaml.org,2002:null node to Nothing.

Page 24 of many | Previous | Next