operator < method
- dynamic other
Less-than operation.
Implementation
LogicValue operator <(dynamic other) =>
// ignore: avoid_dynamic_calls
_doCompare(other, (a, b) => (a < b) as bool);
Less-than operation.
LogicValue operator <(dynamic other) =>
// ignore: avoid_dynamic_calls
_doCompare(other, (a, b) => (a < b) as bool);