Function make_sized_bounded_int_monotonic_sum

Source
pub fn make_sized_bounded_int_monotonic_sum<T: Integer>(
    size: usize,
    bounds: (T, T),
) -> Fallible<Transformation<VectorDomain<AtomDomain<T>>, AtomDomain<T>, SymmetricDistance, AbsoluteDistance<T>>>
Expand description

Make a Transformation that computes the sum of bounded ints, where all values share the same sign.

§Citations

§Arguments

  • size - Number of records in input data.
  • bounds - Tuple of lower and upper bounds for data in the input domain.

§Generics

  • T - Atomic Input Type and Output Type