Home | History | Annotate | Download | only in lang

Lines Matching defs:addExact

67  * overflow errors need to be detected, the methods {@code addExact},
720 * @see Math#addExact(int,int)
723 public static int addExact(int x, int y) {
724 return Math.addExact(x, y);
735 * @see Math#addExact(long,long)
738 public static long addExact(long x, long y) {
739 return Math.addExact(x, y);