summaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2023-01-13 16:57:32 +0100
committerTyge Løvset <[email protected]>2023-01-13 16:57:32 +0100
commitbb92cdbeaa279d8ef90dff0cf088585a50e7d52c (patch)
treea357ad9f39e979b5354a20a78511e253d577f31d /docs
parent350bb65a2f68b14ce16a21ea8670cc087e39f4ce (diff)
downloadSTC-modified-bb92cdbeaa279d8ef90dff0cf088585a50e7d52c.tar.gz
STC-modified-bb92cdbeaa279d8ef90dff0cf088585a50e7d52c.zip
Added algo/cmspan.h: multi-dim span, similar to c++23 mdspan. May get some API changes. Changed cspan.h, these may merge.
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 1488253d..e17e98ca 100644
--- a/docs/ccommon_api.md
+++ b/docs/ccommon_api.md
@@ -282,7 +282,7 @@ c_FORFILTER (i, crange, r1
// 2. The 11 first primes:
printf("2");
-c_FORFILTER (i, crange, crange_LITERAL(3, INT64_MAX, 2)
+c_FORFILTER (i, crange, crange_object(3, INT64_MAX, 2)
, isPrime(*i.ref)
, c_FLT_TAKE(10))
printf(" %lld", *i.ref);