aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorBruce Wells <bruce.wells@simparel.com>2019-11-27 19:19:42 +0300
committerBruce Wells <bruce.wells@simparel.com>2019-11-27 19:19:42 +0300
commit44a13487b5a89951d244ab7a5e723cf7ec893a54 (patch)
tree88cafa1f3fe84e1db662470851a68947973cadda /README.md
parentadf43bc705fd2d839a639c162f53407434867206 (diff)
parentf975f0bfbc6ac28f0a868b2c237cca071c37c39e (diff)
Merge branch 'master' of https://github.com/neonxp/MathExecutor
# Conflicts: # .gitignore # tests/MathTest.php
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/README.md b/README.md
index 58c5422..7238a0b 100644
--- a/README.md
+++ b/README.md
@@ -45,6 +45,8 @@ $executor->addFunction('abs', function($arg) {return abs($arg);});
```
Function default parameters are not supported at this time.
+Default parameters are not currently supported.
+
## Operators:
Default operators: `+ - * / ^`
@@ -156,3 +158,7 @@ You can add operators, functions and variables with the public methods in MathEx
This will allow you to remove functions and operators if needed, or implement different types more simply.
Also note that you can replace an existing default operator by adding a new operator with the same regular expression string. For example if you just need to redefine TokenPlus, you can just add a new operator with the same regex string, in this case '\\+'.
+
+## Future Enhancements
+
+At some point this package will be upgraded to a currently supported version of PHP.