aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Wells <brucekwells@gmail.com>2023-07-12 20:27:48 +0300
committerGitHub <noreply@github.com>2023-07-12 20:27:48 +0300
commitad839b7858d31f4025598193b15ac422f11203d2 (patch)
tree5a8565a44303729dd2fbaa8f9c0488e394cf0351
parent2a65673caea7be6766a20bf377490b5b6ece0276 (diff)
Document all functions in readme (#127)
* Correct average typo * Update to PHP CS FIxer V3.21 * Update available functions
-rw-r--r--README.md20
1 files changed, 19 insertions, 1 deletions
diff --git a/README.md b/README.md
index d84fd17..dfb1fb3 100644
--- a/README.md
+++ b/README.md
@@ -40,21 +40,35 @@ Default functions:
* abs
* acos (arccos)
* acosh
+* arccos
+* arccosec
+* arccot
+* arccotan
+* arccsc (arccosec)
* arcctg (arccot, arccotan)
* arcsec
-* arccsc (arccosec)
+* arcsin
+* arctan
+* arctg
* array
* asin (arcsin)
* atan (atn, arctan, arctg)
* atan2
* atanh
+* atn
* avg
* bindec
* ceil
* cos
+* cosec
* cosec (csc)
* cosh
+* cot
+* cotan
+* cotg
+* csc
* ctg (cot, cotan, cotg, ctn)
+* ctn
* decbin
* dechex
* decoct
@@ -67,6 +81,8 @@ Default functions:
* hypot
* if
* intdiv
+* lg
+* ln
* log (ln)
* log10 (lg)
* log1p
@@ -84,6 +100,8 @@ Default functions:
* sqrt
* tan (tn, tg)
* tanh
+* tg
+* tn
Add custom function to executor:
```php