belliottsmith commented on code in PR #50:
URL: https://github.com/apache/cassandra-accord/pull/50#discussion_r1254432619
##########
accord-core/src/main/java/accord/primitives/Timestamp.java:
##########
@@ -277,6 +277,11 @@ public static <T extends Timestamp> T nonNullOrMax(T a, T
b)
return a == null ? b : b == null ? a : max(a, b);
}
+ public static <T extends Timestamp> T nonNullOrMin(T a, T b)
Review Comment:
`nullableMin` just means nothing to my brain, whereas `nonNullOrMin` means
pick the non-null, if any; if both, apply min.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]