12 template<
typename _T_, std::enable_if_t<Uris::IsUriDefinitionV<_T_>,
bool> = true>
13 inline UriList(std::initializer_list<_T_> args) Q_DECL_NOTHROW {
14 std::copy(args.begin(), args.end(), std::front_inserter(*
this));
17 std::copy(_other.begin(), _other.end(), std::front_inserter(*
this));
19 inline UriList() Q_DECL_NOTHROW { }
20 inline explicit UriList(
const Uri &i) { append(i); }
22#ifdef Q_COMPILER_RVALUE_REFS
25#ifdef Q_COMPILER_INITIALIZER_LISTS
32 std::copy(_other.begin(), _other.end(), std::front_inserter(*
this));
37#ifdef Q_COMPILER_RVALUE_REFS
41 QStringList toStringList()
const;