12 template<
typename _T_>
13 requires(Uris::IsUriDefinitionV<_T_>)
14 inline UriList(std::initializer_list<_T_> args) Q_DECL_NOTHROW
16 std::copy(args.begin(), args.end(), std::front_inserter(*
this));
20 std::copy(_other.begin(), _other.end(), std::front_inserter(*
this));
22 inline UriList() Q_DECL_NOTHROW {}
23 inline explicit UriList(
const Uri& i) { append(i); }
25#ifdef Q_COMPILER_RVALUE_REFS
28#ifdef Q_COMPILER_INITIALIZER_LISTS
35 std::copy(_other.begin(), _other.end(), std::front_inserter(*
this));
43#ifdef Q_COMPILER_RVALUE_REFS