diff options
| author | Tyge Løvset <[email protected]> | 2023-01-19 19:27:07 +0100 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2023-01-19 19:27:07 +0100 |
| commit | 5aa48d538569463ffeda976d21f79edc5f276be4 (patch) | |
| tree | 6bbd87bc9e5041b2c3b69e14ec175536b8418630 /docs | |
| parent | 0c4c4f8bba17562735b67b2923cd23c773aa53a7 (diff) | |
| download | STC-modified-5aa48d538569463ffeda976d21f79edc5f276be4.tar.gz STC-modified-5aa48d538569463ffeda976d21f79edc5f276be4.zip | |
Add a from_n() method to containers (and put_n() to maps), to support new initialization.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/cspan_api.md | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/docs/cspan_api.md b/docs/cspan_api.md index 2865a1a5..8cabd97e 100644 --- a/docs/cspan_api.md +++ b/docs/cspan_api.md @@ -24,8 +24,6 @@ on assignment, but not on initialization of a span variable. All functions are t SpanType{N} cspan_make(ValueType* data, size_t xdim, ...); // make N-dimensional cspan SpanType cspan_from(STCContainer* cnt); // create a 1D cspan from a compatible STC container SpanType cspan_from_array(ValueType array[]); // create a 1D cspan from a C array -SpanType cspan_from_list(T ValueType, {val0, val1, ...}); // create a 1D cspan from an initializer list -SpanType& cspan_literal(T SpanType, {val0, val1, ...}); // create a 1D cspan compound literal from init list void cspan_resize(SpanType{N}* self, size_t xdim, ...); // change the extent of each dimension |
