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