incr method
override
Increments each element of elements using Logic.incr.
Implementation
@override
Conditional incr({Logic Function(Logic p1)? s, dynamic val = 1}) =>
s == null ? (this < this + val) : (s(this) < s(this) + val);
Increments each element of elements using Logic.incr.
@override
Conditional incr({Logic Function(Logic p1)? s, dynamic val = 1}) =>
s == null ? (this < this + val) : (s(this) < s(this) + val);