nc-photos/app/lib/num_extension.dart
2022-04-06 02:37:58 +08:00

11 lines
272 B
Dart

extension NumExtension on num {
bool inRange(
num beg,
num end, {
bool isBegInclusive = true,
bool isEndInclusive = true,
}) {
return (this > beg || (isBegInclusive && this == beg)) &&
(this < end || (isEndInclusive && this == end));
}
}