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.

  1. newtype SummaryField

    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.

  2. SummaryField :: Maybe Text -> SummaryField

    gogol-logging Gogol.Logging

    No documentation available.

  3. newtype SummaryField

    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.

  4. SummaryField :: Maybe Text -> SummaryField

    gogol-logging Gogol.Logging.Types

    No documentation available.

  5. Summary :: ResourceState

    strive Strive.Enums

    No documentation available.

  6. class SummableClass (s :: Type -> Type) y | s -> y

    xmonad-contrib XMonad.Config.Prime

    No documentation available.

  7. summaryBuffer :: Buffer a -> String

    base GHC.IO.Buffer

    No documentation available.

  8. sumEncoding :: Options -> SumEncoding

    aeson Data.Aeson

    Specifies how to encode constructors of a sum datatype.

  9. sumEncoding :: Options -> SumEncoding

    aeson Data.Aeson.Types

    Specifies how to encode constructors of a sum datatype.

  10. sumOf :: Num a => Getting (Endo (Endo a)) s a -> s -> a

    lens 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
    
    sumsumOf folded
    
    This operation may be more strict than you would expect. If you want a lazier version use ala Sum . foldMapOf
    sumOf _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
    

Page 38 of many | Previous | Next