aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAdrian Kummerlaender2015-02-01 13:03:31 +0100
committerAdrian Kummerlaender2015-02-01 13:03:31 +0100
commit858a079c338ff2607994a3b97c87c57fbac7ec6e (patch)
tree8c0de82116580bf0cd47e1c1979cdf9041070691 /README.md
parente317b6c9318766eabda53d9dc6e9cdac55aae34b (diff)
downloadTypeAsValue-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
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 4 insertions, 1 deletions
diff --git a/README.md b/README.md
index bf6f4a8..2efea02 100644
--- a/README.md
+++ b/README.md
@@ -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