Author: fanningpj
Date: Fri Apr 29 22:50:38 2022
New Revision: 1900409

URL: http://svn.apache.org/viewvc?rev=1900409&view=rev
Log:
support gcd function

Modified:
    poi/trunk/poi/src/main/java/org/apache/poi/ss/formula/functions/Gcd.java

Modified: 
poi/trunk/poi/src/main/java/org/apache/poi/ss/formula/functions/Gcd.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/poi/src/main/java/org/apache/poi/ss/formula/functions/Gcd.java?rev=1900409&r1=1900408&r2=1900409&view=diff
==============================================================================
--- poi/trunk/poi/src/main/java/org/apache/poi/ss/formula/functions/Gcd.java 
(original)
+++ poi/trunk/poi/src/main/java/org/apache/poi/ss/formula/functions/Gcd.java 
Fri Apr 29 22:50:38 2022
@@ -26,6 +26,19 @@ import org.apache.poi.ss.formula.eval.Va
 
 import java.util.ArrayList;
 
+
+/**
+ * Implementation for Excel GCD() function.
+ * <p>
+ *   <b>Syntax</b>:<br> <b>GCD  </b>(<b>number</b>, ...)<br>
+ * </p>
+ * <p>
+ *   Returns the greatest common divisor of two or more integers. The greatest 
common divisor is the largest integer that divides both number1 and number2 
without a remainder.
+ * </p>
+ * <p>
+ *   See 
https://support.microsoft.com/en-us/office/gcd-function-d5107a51-69e3-461f-8e4c-ddfc21b5073a
+ * </p>
+ */
 public class Gcd implements FreeRefFunction {
 
     public static final Gcd instance = new Gcd();



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to