nc-photos/lib/num_extension.dart

12 lines
272 B
Dart
Raw Normal View History

2021-06-21 11:04:09 +02:00
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));
}
}