Here you can find the source of sum(BigInteger valueA, BigInteger valueB)
Parameter | Description |
---|---|
valueA | - not null |
valueB | - not null |
public static BigInteger sum(BigInteger valueA, BigInteger valueB)
//package com.java2s; //License from project: Open Source License import java.math.BigInteger; public class Main { /**// ww w . ja v a 2 s .c o m * @param valueA - not null * @param valueB - not null * @return sum - valueA + valueB */ public static BigInteger sum(BigInteger valueA, BigInteger valueB) { return valueA.add(valueB); } }