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