Search results

A representation for types with multiple constructors.

P purescript-prelude M Data.Generic.Rep
sum :: forall a f. Foldable f => Semiring a => f a -> a

Find the sum of the numeric values in a data structure.

P purescript-foldable-traversable M Data.Foldable
sum :: forall a rep r. Generic a rep => GRouteDuplex rep r => Record r -> RouteDuplex' a

Builds a parser/printer from a record, where each record field corresponds to a constructor name for your data type.

Note: this implicitly inserts calls to end for each constructor, making the parser only valid for parsing URI suffixes. To parse URI prefixes, or to just have more explicit control, use sumPrefix.

P purescript-routing-duplex M Routing.Duplex.Generic
sum :: forall s. Semiring s => Fold s s

A Fold which computes the sum of its inputs (generalized to work with an arbitrary Semiring).

P purescript-folds M Control.Fold
sum :: forall a. Semiring a => Vector a -> a

Sum vector elements

P purescript-linear-algebra M LinearAlgebra.Vector
sum :: forall p a f. Semiring p => Foldable f => Functor f => f (Tuple a p) -> p
P purescript-probability M Math.Probability.Dist

The sum of polynomial functors.

P purescript-dissect M Dissect.Generic
sum :: forall a i p rep r s. Generic a rep => GDualSum p s i rep r => Functor (p i) => Alt (p i) => Profunctor p => (forall x l. IsSymbol l => Proxy l -> Dual p s i x -> Dual p s i x) -> Record r -> Dual p s i a
P purescript-polyform M Polyform.Dual.Generic.Sum
sum :: forall a m e i rep r s. Monad m => Semigroup e => Generic a rep => GDualSum (Validator m e) s i rep r => (forall x l. IsSymbol l => Proxy l -> Dual (Validator m e) s i x -> Dual (Validator m e) s i x) -> Record r -> Dual (Validator m e) s i a
P purescript-polyform M Polyform.Validator.Dual.Generic
P purescript-classless-arbitrary M Classless.Arbitrary
sum :: forall ri a. Sum ri a => Record ri -> Gen a
P purescript-classless-arbitrary M Classless.Arbitrary
P purescript-classless-decode-json M Classless.DecodeJson.Generic
sum :: forall spec a. Sum spec a => Record spec -> Json -> Either JsonDecodeError a
P purescript-classless-decode-json M Classless.DecodeJson.Generic
P purescript-classless-encode-json M Classless.EncodeJson.Generic
sum :: forall sumSpec a. Sum sumSpec a => Record sumSpec -> (a -> Json)
P purescript-classless-encode-json M Classless.EncodeJson.Generic
sum :: forall d c b a. Iso (Sum a b) (Sum c d) (Either a b) (Either c d)

Iso between Sum and Either

P purescript-generics-rep-optics M Generic.Optic.Rep
Sum :: AggregationType
P purescript-google-apps M Data.Google.Apps.DataStudio.AggregationType
Sum :: PivotTableSummarizeFunction
P purescript-google-apps M Data.Google.Apps.Spreadsheet.PivotTableSummarizeFunction
sum :: Array HuffmanTree -> Number
P purescript-huffman M Data.Huffman.Tree
sum :: forall eff. Histogram -> Eff (ref :: REF | eff) (Maybe Number)

Returns the sum of the measurements in the histogram. Returns 'Nothing' if there are no measurements.

P purescript-metrics M System.Metrics.Histogram
sum :: forall eff. Timer -> Eff (ref :: REF | eff) (Maybe Number)

Returns the sum of the measurements in the timer.

P purescript-metrics M System.Metrics.Timer
sum :: forall b a. HasAdd b => HasReduce a => HasZero b => a b -> b

Adds all the elements of a container together. If the container is empty, returns zero.

[1, 2, 3] :sum -- 6
([] :: Array Int) :sum -- 0
["ab", "cd", "ef"] :sum -- "abcdef"
([] :: Array String) :sum -- ""
P purescript-neon M Neon.Helper
sum :: forall s. Semiring s => Fold s s

A Fold which computes the sum of its inputs (generalized to work with an arbitrary Semiring).

P purescript-open-folds M Control.Fold
sum :: forall r rep e m a. Monad m => Generic a rep => GDualSum (Validator m (Errors (JsonError e))) Json rep r => Record r -> JsonDual m e a
P purescript-polyform-validators M Polyform.Duals.Validators.Json
sum :: forall b a. UnaryOperator a b b
P purescript-querydsl M QueryDsl.Expressions

The Sum of two comonads, which allows us to be in one state or the other at a time, remembering the other state. We can also move from one state to the other using the moveLeft and moveRight actions.

P purescript-react-explore M React.Explore.Sum
Sum :: forall f a g. Boolean -> (f a) -> (g a) -> Sum f g a
P purescript-react-explore M React.Explore.Sum
sum :: StringConst "sum"
P purescript-react-mui M MaterialUI.Enums
sum :: forall x r. Semiring x => Run (Producer x r) Unit -> Run r x

Returns the sum of values yielded by a Producer.

P purescript-run-streaming M Run.Streaming.Prelude
sum :: forall a r. Arith a a a r => Array a -> a
P purescript-z3 M Z3
sum :: forall a. Array a -> a
P purescript-z3 M Z3.Internal
SumL :: forall a c b. (a c) -> Sum a b c
P purescript-dissect M Dissect.Generic
SumR :: forall b c a. (b c) -> Sum a b c
P purescript-dissect M Dissect.Generic
sum_ :: forall a s. Col s a -> Aggr s (Maybe String)
P purescript-selda M Selda
sumOf :: forall s t a b. Semiring a => Fold (Additive a) s t a b -> s -> a

The sum of all foci of a Fold.

P purescript-profunctor-lenses M Data.Lens.Fold
P purescript-dissect M Dissect.Generic
P purescript-typelevel-peano M Type.Data.Peano.Int.Definition

a + b = c

P purescript-typelevel-peano M Type.Data.Peano.Nat.Definition
SumL_2 :: forall p a b q. (p a b) -> Sum_2 p q a b
P purescript-dissect M Dissect.Generic
SumR_2 :: forall q a b p. (q a b) -> Sum_2 p q a b
P purescript-dissect M Dissect.Generic
sumInl :: forall r b a. Prism (Sum a r) (Sum b r) a b

Prism into the Inl of Sum

P purescript-generics-rep-optics M Generic.Optic.Rep
sumInr :: forall b a l. Prism (Sum l a) (Sum l b) a b

Prism into the Inr of Sum

P purescript-generics-rep-optics M Generic.Optic.Rep
P purescript-spec M Test.Spec.Summary
summary :: forall w i. Node HTMLsummary w i
P purescript-halogen M Halogen.HTML.Elements
summary :: Array Props -> Array ReactElement -> ReactElement
P purescript-react M React.DOM
summary :: Array Props -> Array ReactElement -> ReactElement
P purescript-react M React.DOM.Dynamic
summary :: String -> Props
P purescript-react M React.DOM.Props
summary :: forall e. Markup e -> Markup e
P purescript-smolder M Text.Smolder.HTML
summary :: String -> Attribute
P purescript-smolder M Text.Smolder.HTML.Attributes
summary :: Selector
P purescript-css M CSS.Elements
SumSize :: forall a. (Exists Size) -> (Exists Size) -> Size a
P purescript-css M CSS.Size
summary :: forall attrs attrs_. Union attrs attrs_ Props_summary => Record attrs -> JSX
P purescript-react-basic-dom M React.Basic.DOM.Generated
summary :: forall attrsNoChildren attrsWithDuplicate attrs attrs_ jsx. Union attrs attrs_ Props_summary => ToJSX jsx => Union (children :: Array JSX) attrsNoChildren attrsWithDuplicate => Nub (children :: Array JSX | attrsNoChildren) attrs => Record attrsNoChildren -> jsx -> JSX
P purescript-react-basic-dom M React.Basic.DOM.Simplified.Generated
summary :: forall state. VNode state
P purescript-freedom M Freedom.Markup.Tag
summary :: forall a. String -> Prop a

Specifies a summary of the content of a table

P purescript-chameleon M Chameleon.HTML.Attributes
summary :: ElemName

Defines a visible heading for a <details> element

P purescript-chameleon M Chameleon.HTML.ElemNames
summary :: forall html a. Html html => Array (Prop a) -> Array (html a) -> html a

Defines a visible heading for a <details> element

P purescript-chameleon M Chameleon.HTML.Elements
summary :: forall html a. Html html => Array (Prop a) -> Array (Key /\ (html a)) -> html a

Defines a visible heading for a <details> element

P purescript-chameleon M Chameleon.HTML.KeyedElements
summary :: VNode
P purescript-grain M Grain.Markup.Element
summary :: El
P purescript-concur-react M Concur.React.DOM
summary :: forall a. String -> ReactProps a
P purescript-concur-react M Concur.React.Props
summary :: forall msg. Array (Attribute msg) -> Array (View msg) -> View msg
P purescript-oak M Oak.Html
P purescript-deku M Deku.DOM.Attr.Summary
Summary :: Summary
P purescript-deku M Deku.DOM.Attr.Summary
summary :: forall lock payload. Event (Attribute Summary_) -> Array (Domable lock payload) -> Domable lock payload
P purescript-deku M Deku.DOM.Elt.Summary
summary :: forall m. Array (Prop m) -> Component m -> Component m
P purescript-jelly M Jelly.Element
summary :: ElemFactory
P purescript-reactix M Reactix.DOM.HTML
summary :: Proxy @Symbol "summary"
P purescript-tecton M Tecton.Internal
summary :: MarkupT ~> MarkupT

A summary for a given details.

P purescript-bonsai M Bonsai.Html.Elements
summary :: forall (props :: Row Type) (content :: Type). ReactChildren content => IsSubsetOf props (_data :: Object String, about :: String, acceptCharset :: String, accessKey :: String, allowFullScreen :: Boolean, allowTransparency :: Boolean, "aria-activedescendant" :: String, "aria-atomic" :: String, "aria-autocomplete" :: String, "aria-busy" :: String, "aria-checked" :: String, "aria-colcount" :: String, "aria-colindex" :: String, "aria-colspan" :: String, "aria-controls" :: String, "aria-current" :: String, "aria-describedby" :: String, "aria-details" :: String, "aria-disabled" :: String, "aria-dropeffect" :: String, "aria-errormessage" :: String, "aria-expanded" :: String, "aria-flowto" :: String, "aria-grabbed" :: String, "aria-haspopup" :: String, "aria-hidden" :: String, "aria-invalid" :: String, "aria-keyshortcuts" :: String, "aria-label" :: String, "aria-labelledby" :: String, "aria-level" :: String, "aria-live" :: String, "aria-modal" :: String, "aria-multiline" :: String, "aria-multiselectable" :: String, "aria-orientation" :: String, "aria-owns" :: String, "aria-placeholder" :: String, "aria-posinset" :: String, "aria-pressed" :: String, "aria-readonly" :: String, "aria-relevant" :: String, "aria-required" :: String, "aria-roledescription" :: String, "aria-rowcount" :: String, "aria-rowindex" :: String, "aria-rowspan" :: String, "aria-selected" :: String, "aria-setsize" :: String, "aria-sort" :: String, "aria-valuemax" :: String, "aria-valuemin" :: String, "aria-valuenow" :: String, "aria-valuetext" :: String, autoComplete :: Boolean, autoFocus :: Boolean, autoPlay :: Boolean, capture :: Boolean, cellPadding :: String, cellSpacing :: String, charSet :: String, classID :: String, className :: String, colSpan :: Int, contentEditable :: Boolean, contextMenu :: String, crossOrigin :: String, dangerouslySetInnerHTML :: { __html :: String }, datatype :: String, dateTime :: String, dir :: String, draggable :: Boolean, encType :: String, formAction :: String, formEncType :: String, formMethod :: String, formNoValidate :: Boolean, formTarget :: String, frameBorder :: String, hidden :: Boolean, hrefLang :: String, htmlFor :: String, httpEquiv :: String, icon :: String, id :: String, inlist :: String, inputMode :: String, is :: String, itemID :: String, itemProp :: String, itemRef :: String, itemScope :: Boolean, itemType :: String, key :: String, keyParams :: String, keyType :: String, lang :: String, marginHeight :: String, marginWidth :: String, maxLength :: Int, mediaGroup :: String, minLength :: Int, noValidate :: Boolean, onBlur :: EffectFn1 SyntheticEvent Unit, onClick :: EffectFn1 SyntheticEvent Unit, onDoubleClick :: EffectFn1 SyntheticEvent Unit, onFocus :: EffectFn1 SyntheticEvent Unit, onKeyDown :: EffectFn1 KeyboardEvent Unit, onKeyPress :: EffectFn1 KeyboardEvent Unit, onKeyUp :: EffectFn1 KeyboardEvent Unit, onMouseDown :: EffectFn1 MouseEvent Unit, onMouseEnter :: EffectFn1 MouseEvent Unit, onMouseLeave :: EffectFn1 MouseEvent Unit, onMouseMove :: EffectFn1 MouseEvent Unit, onMouseOut :: EffectFn1 MouseEvent Unit, onMouseOver :: EffectFn1 MouseEvent Unit, onMouseUp :: EffectFn1 MouseEvent Unit, onScroll :: EffectFn1 SyntheticEvent Unit, onTouchCancel :: EffectFn1 TouchEvent Unit, onTouchEnd :: EffectFn1 TouchEvent Unit, onTouchMove :: EffectFn1 TouchEvent Unit, onTouchStart :: EffectFn1 TouchEvent Unit, prefix :: String, property :: String, radioGroup :: String, readOnly :: Boolean, ref :: Ref HTMLElement, resource :: String, role :: String, role :: String, rowSpan :: Int, scoped :: Boolean, seamless :: Boolean, security :: String, spellCheck :: Boolean, srcDoc :: ReactElement, srcLang :: String, srcSet :: String, style :: CSS, suppressContentEditableWarning :: Boolean, tabIndex :: Int, title :: String, typeof :: String, unselectable :: Boolean, useMap :: String, vocab :: String, wmode :: String) => ValidReactProps (Record props) => Record props -> content -> ReactElement
P purescript-elmish-html M Elmish.HTML.Generated
summary :: forall (content :: Type). ReactChildren content => String -> content -> ReactElement
P purescript-elmish-html M Elmish.HTML.Styled.Generated
summary :: forall a b h. ToHtml a b h
P purescript-flame M Flame.Html.Element
summary :: forall attrs attrs_. Union attrs attrs_ (MotionProps + Props_summary) => ReactComponent (Record attrs)
P purescript-framer-motion M Framer.Motion.MotionComponent
summary :: ClassName
P purescript-halogen-bootstrap5 M Halogen.Themes.Bootstrap5

Summary of the distribution of the measurements in the histogram. Contains:

  • min: minimum
  • max: maximum
  • sum: sum
  • variance: variance
  • mean: mean
  • stdDev: standard deviation
  • count: count
  • median: median
  • p75: 75th percentile
  • p95: 95th percentile
  • p99: 99th percentile
  • p999: 99.9th percentile
P purescript-metrics M System.Metrics.Histogram
Summary :: { count :: Int, max :: Maybe Number, mean :: Maybe Number, median :: Maybe Number, min :: Maybe Number, p75 :: Maybe Number, p95 :: Maybe Number, p99 :: Maybe Number, p999 :: Maybe Number, stdDev :: Maybe Number, sum :: Maybe Number, variance :: Maybe Number } -> Summary
P purescript-metrics M System.Metrics.Histogram

Summary of the measurements in the meter. Contains:

  • count: count
  • m1: one minute rate
  • m5: five minute rate
  • m15: fifteen minute rate
  • mean: mean rate
P purescript-metrics M System.Metrics.Meter
Summary :: { count :: Int, m1 :: Number, m15 :: Number, m5 :: Number, mean :: Number } -> Summary
P purescript-metrics M System.Metrics.Meter

Summary of the measurements in the meter. Contains:

  • duration: the summary of the underlying event duration histogram.
  • rate: the summary of the underlying event rate meter.
P purescript-metrics M System.Metrics.Timer
Summary :: { duration :: Summary, rate :: Summary } -> Summary
P purescript-metrics M System.Metrics.Timer
summary :: forall e. Markup e -> Markup e
P purescript-open-smolder M Text.Smolder.HTML
summary :: String -> Attribute
P purescript-open-smolder M Text.Smolder.HTML.Attributes
summary :: forall f e. Traversable f => f (VDom e) -> VDom e
P purescript-outwatch M OutWatch.Dom
summary :: forall f e. Traversable f => f (VDom e) -> VDom e
P purescript-outwatch M OutWatch.Tags
summary :: StaticElement
P purescript-panda M Panda.HTML.Elements
summary :: String -> StaticProperty
P purescript-panda M Panda.Property
summary :: FFIComponent SummaryProps

The <summary> HTML element is used as a summary, caption, or legend for the content of a <details> element.

Example:

details {}
  [ summary {} "Summary text goes here."
  , text "The long version of the details goes here."
  ]
P purescript-react-basic-dom-beta M Beta.DOM.HTML.Summary
summary :: Free SpaceF Unit -> Free SpaceF Unit
P purescript-react-spaces M React.Spaces.DOM
summary :: Free SpaceF Unit -> Free SpaceF Unit
P purescript-react-spaces M React.Spaces.DOM.Dynamic
summary :: forall st eff. String -> Props eff st
P purescript-refract M Props
summary :: forall st eff. Array (Props eff st) -> Array (Component eff st) -> Component eff st
P purescript-refract M Refract.DOM
summary :: forall o i context channel. Array (Attr context i) -> Array (Handler context (Either channel (i -> o))) -> Array (SDOM channel context i o) -> SDOM channel context i o
P purescript-sdom M SDOM.Elements
summary :: forall i. Node HTMLsummary i
P purescript-spork M Spork.Html.Elements
summary :: FFIComponent SummaryProps

The <summary> HTML element is used as a summary, caption, or legend for the content of a <details> element.

Example:

details {}
  [ summary {} "Summary text goes here."
  , text "The long version of the details goes here."
  ]
P purescript-yoga-react-dom M Yoga.React.DOM.HTML.Summary
P purescript-interactive-data M InteractiveData.App.UI.Types.SumTree
SumTree :: { children :: Array { deepSingletons :: Array (DataPathSegment /\ TreeMeta), key :: DataPathSegment, tree :: SumTree }, meta :: TreeMeta } -> SumTree
P purescript-interactive-data M InteractiveData.App.UI.Types.SumTree
sumTree :: forall srf msg. DataTree srf msg -> Maybe { deepSingletons :: Array (DataPathSegment /\ TreeMeta), tree :: SumTree }
P purescript-interactive-data M InteractiveData.App.UI.Types.SumTree
summary_ :: forall w i. Array (HTML w i) -> HTML w i
P purescript-halogen M Halogen.HTML.Elements
summary' :: Array ReactElement -> ReactElement
P purescript-react M React.DOM
summary' :: Array ReactElement -> ReactElement
P purescript-react M React.DOM.Dynamic