Searched defs:constructible_from (Results 1 – 2 of 2) sorted by relevance
42 struct constructible_from { struct45 explicit constructible_from(T v) : v_(v) {} in constructible_from() function51 T get() const { return v_; } in get()
27 concept constructible_from = destructible<_Tp> && is_constructible_v<_Tp, _Args...>; variable