You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* `shared_ptr<T>` // shared ownership: `std::shared_ptr<T>` (a counted pointer)
21343
21343
* `stack_array<T>` // A stack-allocated array. The number of elements is determined at construction and fixed thereafter. The elements are mutable unless `T` is a `const` type.
21344
-
* `dyn_array<T>` // A container, nongrowing dynamically allocated array. The number of elements is determined at construction and fixed thereafter.
21344
+
* `dyn_array<T>` // A container, non-growing dynamically allocated array. The number of elements is determined at construction and fixed thereafter.
21345
21345
The elements are mutable unless `T` is a `const` type. Basically a `span` that allocates and owns its elements.
0 commit comments