diff options
author | Bruce Wells <brucekwells@gmail.com> | 2023-07-12 20:27:48 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-12 20:27:48 +0300 |
commit | ad839b7858d31f4025598193b15ac422f11203d2 (patch) | |
tree | 5a8565a44303729dd2fbaa8f9c0488e394cf0351 | |
parent | 2a65673caea7be6766a20bf377490b5b6ece0276 (diff) |
Document all functions in readme (#127)
* Correct average typo
* Update to PHP CS FIxer V3.21
* Update available functions
-rw-r--r-- | README.md | 20 |
1 files changed, 19 insertions, 1 deletions
@@ -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 |