From cb8bf3ec3cf07c76c42b32d54373bc1dedcc4ada Mon Sep 17 00:00:00 2001 From: jonathan Date: Wed, 10 Jul 2019 14:48:21 +0200 Subject: [PATCH 1/3] Add sum() function to the README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 1081c580..5f15d45b 100644 --- a/README.md +++ b/README.md @@ -84,6 +84,7 @@ The function output is dictated by the function itself. | avg() | Provides the average value of an array of numbers | Double | | stddev() | Provides the standard deviation value of an array of numbers | Double | | length() | Provides the length of an array | Integer | +| sum() | Provides the sum value of an array of numbers | Integer | Filter Operators From 89b5bff32165443bd84d3ee053ae6e8f6e962cef Mon Sep 17 00:00:00 2001 From: jonathan Date: Wed, 10 Jul 2019 14:49:34 +0200 Subject: [PATCH 2/3] Fix tab inclusion on README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5f15d45b..22668694 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ The function output is dictated by the function itself. | avg() | Provides the average value of an array of numbers | Double | | stddev() | Provides the standard deviation value of an array of numbers | Double | | length() | Provides the length of an array | Integer | -| sum() | Provides the sum value of an array of numbers | Integer | +| sum() | Provides the sum value of an array of numbers | Integer | Filter Operators From 9f2184f1878ed4626226705d5c6b9c2e62c71945 Mon Sep 17 00:00:00 2001 From: jonathan Date: Wed, 10 Jul 2019 15:20:03 +0200 Subject: [PATCH 3/3] Fix return type for function sum on the README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 22668694..34fad239 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ The function output is dictated by the function itself. | avg() | Provides the average value of an array of numbers | Double | | stddev() | Provides the standard deviation value of an array of numbers | Double | | length() | Provides the length of an array | Integer | -| sum() | Provides the sum value of an array of numbers | Integer | +| sum() | Provides the sum value of an array of numbers | Double | Filter Operators