PDI 1.11.0

the PDI data interface

PDI::initializable_from Concept Reference

An object is initializable_from<G> if it can be initalized using the init_from member function from a reference of G. More...

#include <testing.h>

Concept definition

template<class T, class G>
concept PDI::initializable_from = requires(T t, G& gen) {
{
t.init_from(gen)
};
}
An object is initializable_from<G> if it can be initalized using the init_from member function from a...
Definition testing.h:83

Detailed Description

An object is initializable_from<G> if it can be initalized using the init_from member function from a reference of G.