summaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2023-03-28 19:29:05 +0200
committerTyge Løvset <[email protected]>2023-03-28 19:29:05 +0200
commit59d74d181e44dd05a8570b42fc6284745e225664 (patch)
treeb693ec9f5ef0d529fd2e6edbe3b53cf0f1eb8c2d /docs
parent26cd0a73422cdbcd4998170e179fa0f3ce48e9a5 (diff)
downloadSTC-modified-59d74d181e44dd05a8570b42fc6284745e225664.tar.gz
STC-modified-59d74d181e44dd05a8570b42fc6284745e225664.zip
Example changes. Added crand.h possible replacement for crandom.h
Diffstat (limited to 'docs')
-rw-r--r--docs/ccommon_api.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ccommon_api.md b/docs/ccommon_api.md
index 53ba096a..46966fd9 100644
--- a/docs/ccommon_api.md
+++ b/docs/ccommon_api.md
@@ -92,7 +92,7 @@ Iterate containers with stop-criteria and chained range filtering.
| `c_flt_skipwhile(it, predicate)` | Skip items until predicate is false |
| `c_flt_takewhile(it, predicate)` | Take items until predicate is false |
| `c_flt_count(it)` | Increment current and return value |
-| `c_flt_last(it)` | Get value of last count/skip/take |
+| `c_flt_last(it)` | Get value of last count/skip*/take* |
```c
// Example:
#include <stc/algo/crange.h>