Namespaces | |
namespace | cetl::pf20 |
namespace | cetl |
Typedefs | |
template<typename T, std::size_t Extent = dynamic_extent> | |
using | cetl::span = cetl::pf20::span<T, Extent> |
Variables | |
constexpr std::size_t | cetl::dynamic_extent = cetl::pf20::dynamic_extent |
CETL polyfill header for C++20 types.
CETL polyfill headers will provide the CETL type as an aliased standard type in the std namespace when compiling using older C++ libraries and will automatically provide types from the standard library when compiling using newer C++ libraries. This allows for causal use of CETL as a true polyfill library but does violate certain coding standards. As such, for more critical software we recommend not using these headers but including the types you use from cetl::pf20
directly.
For example, using the polyfill header you can write a program where the code automatically switches to using the C++ 20 version of span when compiling with that standard enabled:
For more critical code you can define a custom span type can be easily redefined later without using the automatic polyfill header:
When doing this you might want to add an assert to ensure you don't forget to redefine your custom type: