Here you can find the source of sum(double a, double b)
Parameter | Description |
---|---|
a | first double value |
b | second double value |
public static double sum(double a, double b)
//package com.java2s; /*//from www .ja v a 2s .co m * Copyright (c) 2007-2016 AREasy Runtime * * This library, AREasy Runtime and API for BMC Remedy AR System, is free software ("Licensed Software"); * you can redistribute it and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either version 2.1 of the License, * or (at your option) any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * including but not limited to, the implied warranty of MERCHANTABILITY, NONINFRINGEMENT, * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. */ public class Main { /** * Make sum of two double values. This method is created because Velocity * is not supporting basic operations with this data type * @param a first double value * @param b second double value * @return sum */ public static double sum(double a, double b) { return a + b; } /** * Make sum of two float values. This method is created because Velocity * is not supporting basic operations with this data type * @param a first float value * @param b second float value * @return sum */ public static float sum(float a, float b) { return a + b; } /** * Make sum of two long values. This method is created because Velocity * is not supporting basic operations with this data type * @param a first long value * @param b second long value * @return sum */ public static long sum(long a, long b) { return a + b; } }