Duration isPositive missing?
Steven Schlansker
stevenschlansker at gmail.com
Fri Dec 16 17:54:32 UTC 2016
Hi core-libs-dev,
My coworker and I were just puzzling over the seemingly trivially missing
java.time.Duration#isPositive
There are already "isNegative" and "isZero" -- but for isPositive the best
we came up with were awful things like
!isZero() && !isNegative()
!.negate().isNegative()
.compareTo(Duration.ZERO) > 0
but all of these feel way worse than a simple isPositive method.
Can you shed some light as to why this is missing?
Thanks!
Steven
More information about the core-libs-dev
mailing list