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