diff options
| author | tylov <[email protected]> | 2023-07-21 11:22:48 +0200 |
|---|---|---|
| committer | tylov <[email protected]> | 2023-07-21 11:22:48 +0200 |
| commit | f3794f2b86b6f7f85096a0c2e9ca5720aed53300 (patch) | |
| tree | a96e759baf995559cab0a6e32160621015276158 /docs | |
| parent | dbcc13635402bd466675f4f41e865d02abc6f918 (diff) | |
| download | STC-modified-f3794f2b86b6f7f85096a0c2e9ca5720aed53300.tar.gz STC-modified-f3794f2b86b6f7f85096a0c2e9ca5720aed53300.zip | |
Removed c_foreach_rv() - only worked for cvec, so not general.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ccommon_api.md | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/ccommon_api.md b/docs/ccommon_api.md index 0752beb5..11d425e5 100644 --- a/docs/ccommon_api.md +++ b/docs/ccommon_api.md @@ -3,13 +3,12 @@ --- ## Ranged for-loops -### c_foreach, c_foreach_rv, c_forpair +### c_foreach, c_forpair | Usage | Description | |:-----------------------------------------|:------------------------------------------| | `c_foreach (it, ctype, container)` | Iteratate all elements | | `c_foreach (it, ctype, it1, it2)` | Iterate the range [it1, it2) | -| `c_foreach_rv (it, ctype, container)` | Iteratate in reverse (cstack, cvec, cdeq) | | `c_forpair (key, val, ctype, container)` | Iterate with structured binding | ```c |
