Skip to content

[ACP] Impl iter::Sum (and iter::Product) for num::Saturating<u*> #303

@jmillikin

Description

@jmillikin

Proposal

Problem statement

core::iter::Sum is implemented for types that can be created by summing a sequence of values. It's implemented for various integer types, and also the core::num::Wrapping wrapper type (which forces wrapped arithmetic). I propose that it should also be implemented for core::num::Saturating, which would force saturating arithmetic.

Per discussion (below), I'm only proposing to cover unsigned integer types. Summing over signed integers doesn't have an obviously correct behavior, and I don't want to get tangled up in that in my quest for saturating unsigned summation.

Motivating examples or use cases

I sometimes want to sum a set of integers that might cumulatively exceed some bound, without the risk of overflow (wrapping and crashing would both be bad).

For example, when assembling a record with max size isize::MAX from a set of smaller fields, I want to sum all the usize field sizes and then if summed_size > (isize::MAX as usize) { return Err(...); }. On 32-bit targets (e.g. WASM) this summation can easily overflow, so code that does field_sizes().iter().sum() is riskier than it looks.

Solution sketch

Adjust the integer_sum_product!() macro to add Saturating<T>, following the existing example of Wrapping<T> . This macro implements both iter::Sum and iter::Product for the relevant types.

For example, the macro-expanded impl of iter::Sum ends up looking like this:

impl core::iter::Sum for Saturating<$t> {
    fn sum<I: Iterator<Item = $t>>(iter: I) -> Self {
        iter.fold(Saturating(0), |a, b| a + b)  // a + b == a.saturating_add(b)
    }
}

Alternatives

The only alternative is "do nothing" -- both of the types are in the standard library, so users can't implement the glue trait themselves.

Links and related work

What happens now?

This issue contains an API change proposal (or ACP) and is part of the libs-api team feature lifecycle. Once this issue is filed, the libs-api team will review open proposals as capability becomes available. Current response times do not have a clear estimate, but may be up to several months.

Possible responses

The libs team may respond in various different ways. First, the team will consider the problem (this doesn't require any concrete solution or alternatives to have been proposed):

  • We think this problem seems worth solving, and the standard library might be the right place to solve it.
  • We think that this probably doesn't belong in the standard library.

Second, if there's a concrete solution:

  • We think this specific solution looks roughly right, approved, you or someone else should implement this. (Further review will still happen on the subsequent implementation PR.)
  • We're not sure this is the right solution, and the alternatives or other materials don't give us enough information to be sure about that. Here are some questions we have that aren't answered, or rough ideas about alternatives we'd want to see discussed.

Metadata

Metadata

Assignees

No one assigned

    Labels

    T-libs-apiapi-change-proposalA proposal to add or alter unstable APIs in the standard libraries

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions