diff options
author | Adrian Kummerlaender | 2015-02-01 13:03:31 +0100 |
---|---|---|
committer | Adrian Kummerlaender | 2015-02-01 13:03:31 +0100 |
commit | 858a079c338ff2607994a3b97c87c57fbac7ec6e (patch) | |
tree | 8c0de82116580bf0cd47e1c1979cdf9041070691 | |
parent | e317b6c9318766eabda53d9dc6e9cdac55aae34b (diff) | |
download | TypeAsValue-858a079c338ff2607994a3b97c87c57fbac7ec6e.tar TypeAsValue-858a079c338ff2607994a3b97c87c57fbac7ec6e.tar.gz TypeAsValue-858a079c338ff2607994a3b97c87c57fbac7ec6e.tar.bz2 TypeAsValue-858a079c338ff2607994a3b97c87c57fbac7ec6e.tar.lz TypeAsValue-858a079c338ff2607994a3b97c87c57fbac7ec6e.tar.xz TypeAsValue-858a079c338ff2607994a3b97c87c57fbac7ec6e.tar.zst TypeAsValue-858a079c338ff2607994a3b97c87c57fbac7ec6e.zip |
Added some of the new features to the README file
-rw-r--r-- | README.md | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -26,9 +26,12 @@ const std::size_t count = tav::Length< * `Cons` structure * `List` function as helper for `Cons` construction * basic list operators such as `Nth`, `Length`, `Take` and `Append` +* list generators such as `Iota` and `MakeList` * higher order list operation `Fold` * higher order list operations such as `Map` and `Filter` expressed in terms of `Fold` -* higher order list queries such as `Any`, `All` and `None` +* higher order list queries such as `Find`, `Any`, `All` and `None` +* higher order list generators such as `ListTabulate` +* basic partial function application support using `Apply` * `static_assert` based test cases for all of the above ## Requirements |