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.
(
... ) :: Index ix => ix -> ix -> Array D ix ixmassiv 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 ]
(
..: ) :: Index ix => ix -> ix -> Array D ix ixmassiv Data.Massiv.Vector >>> Ix1 4 ..: 10 Array D Seq (Sz1 6) [ 4, 5, 6, 7, 8, 9 ]
(
.&. ) :: Bits a => a -> a -> aprotolude Protolude Bitwise "and"
(
.|. ) :: Bits a => a -> a -> aprotolude Protolude Bitwise "or"
(
.:?? ) :: 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.
(
.+^ ) :: AffineSpace p => p -> Diff p -> pvector-space Data.AffineSpace Point plus vector
(
.-. ) :: AffineSpace p => p -> p -> Diff pvector-space Data.AffineSpace Subtract points
(
.-^ ) :: AffineSpace p => p -> Diff p -> pvector-space Data.AffineSpace Point minus vector
(
.!= ) :: Parser (Maybe a) -> a -> Parser aHsYAML Data.YAML (
.: ) :: FromYAML a => Mapping Pos -> Text -> Parser aHsYAML Data.YAML Retrieve value in Mapping indexed by a !!str Text key. This parser fails if the key doesn't exist.