PDI 1.12.0-alpha.2026-05-07

the PDI data interface

PDI::range_of_exception_ptrs Concept Reference

A concept that represent a "range" (list) of errors, in any kind of storage. More...

#include <error.h>

Concept definition

template<typename R>
concept PDI::range_of_exception_ptrs = std::ranges::input_range<R> && std::ranges::sized_range<R> && std::convertible_to<std::ranges::range_reference_t<R>, std::exception_ptr>
A concept that represent a "range" (list) of errors, in any kind of storage.
Definition error.h:47

Detailed Description

A concept that represent a "range" (list) of errors, in any kind of storage.