Hoogle Search
Within LTS Haskell 24.25 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
gogol-logging Gogol.Logging A field from the LogEntry that is added to the summary line (https://cloud.google.com/logging/docs/view/logs-explorer-interface#add-summary-fields) for a query in the Logs Explorer. See: newSummaryField smart constructor.
SummaryField :: Maybe Text -> SummaryFieldgogol-logging Gogol.Logging No documentation available.
-
gogol-logging Gogol.Logging.Types A field from the LogEntry that is added to the summary line (https://cloud.google.com/logging/docs/view/logs-explorer-interface#add-summary-fields) for a query in the Logs Explorer. See: newSummaryField smart constructor.
SummaryField :: Maybe Text -> SummaryFieldgogol-logging Gogol.Logging.Types No documentation available.
-
strive Strive.Enums No documentation available.
class
SummableClass (s :: Type -> Type) y | s -> yxmonad-contrib XMonad.Config.Prime No documentation available.
summaryBuffer :: Buffer a -> Stringbase GHC.IO.Buffer No documentation available.
sumEncoding :: Options -> SumEncodingaeson Data.Aeson Specifies how to encode constructors of a sum datatype.
sumEncoding :: Options -> SumEncodingaeson Data.Aeson.Types Specifies how to encode constructors of a sum datatype.
sumOf :: Num a => Getting (Endo (Endo a)) s a -> s -> alens Control.Lens.Combinators Calculate the Sum of every number targeted by a Fold.
>>> sumOf both (5,6) 11 >>> sumOf folded [1,2,3,4] 10 >>> sumOf (folded.both) [(1,2),(3,4)] 10 >>> import Data.Data.Lens >>> sumOf biplate [(1::Int,[]),(2,[(3::Int,4::Int)])] :: Int 10
sum ≡ sumOf folded
This operation may be more strict than you would expect. If you want a lazier version use ala Sum . foldMapOfsumOf _1 :: Num a => (a, b) -> a sumOf (folded . _1) :: (Foldable f, Num a) => f (a, b) -> a
sumOf :: Num a => Getter s a -> s -> a sumOf :: Num a => Fold s a -> s -> a sumOf :: Num a => Lens' s a -> s -> a sumOf :: Num a => Iso' s a -> s -> a sumOf :: Num a => Traversal' s a -> s -> a sumOf :: Num a => Prism' s a -> s -> a