Я пытаюсь просмотреть :: concat 2 views.Я не понимаю, когда я могу и не могу сделать это и почему.Любая помощь будет отличной. Этот вопрос звучит похоже, но не решает мою проблему.
Я попробовал следующий код
#include <iostream>
#include <range/v3/all.hpp>
using namespace ranges;
int main () {
// 'string' of spaces
auto spaces = view::repeat_n(' ',4); // 1
// prints [ , , , ]
std::cout << spaces << std::endl;
// 'string' of letters
auto letters = view::iota('a', 'a' + 4); // 2
// prints [a,b,c,d]
std::cout << letters << std::endl;
// 'string' from concat of letters and spaces
auto text = view::concat(letters,spaces); // 3
// prints [a,b,c,d, , , , ]
std::cout << text << std::endl;
// 'vector<string>' repeat letters
auto letter_lines = view::repeat_n(letters,3); // 4a
// prints [[a,b,c,d],[a,b,c,d],[a,b,c,d]]
std::cout << letter_lines << std::endl;
// 'vector<string>' repeat spaces
auto space_lines = view::repeat_n(spaces,3); // 4b
// prints [[ , , , ],[ , , , ],[ , , ,]]
std::cout << space_lines << std::endl;
// 'vector<string>' concat 2 repeated letter_lines
auto multi_letter_lines = view::concat(letter_lines,letter_lines); // 5
// prints [[a,b,c,d],[a,b,c,d],[a,b,c,d],[a,b,c,d],[a,b,c,d],[a,b,c,d]]
std::cout << multi_letter_lines << std::endl;
// 'vector<string>' from concat of letter_lines, and spaces_lines
// this doesn't work (well it compiles)
auto text_lines = view::concat(letter_lines,space_lines);
// this doesn't compile
std::cout << text_lines << std::endl; // 6 ERROR
// I expected [[a,b,c,d],[a,b,c,d],[a,b,c,d],[ , , , ],[ , , , ],[ , , , ]]
// This works
auto flat_text_lines = view::concat(letter_lines | view::join,
space_lines | view::join); // 7
// prints [a,b,c,d,a,b,c,d,a,b,c,d, , , , , , , , , , , , ]
std::cout << flat_text_lines << std::endl;
// but the structure is lost; it's a 'string', not a 'vector<string>'
}
Cout после строки 6 выдает ошибку
note: template argument deduction/substitution failed:
concat.cpp:21:19: note: cannot convert ‘text_lines’ (type‘ranges::v3::concat_view<ranges::v3::repeat_n_view<ranges::v3::iota_view<char, int>>, ranges::v3::repeat_n_view<ranges::v3::repeat_n_view<char> > >’) to type ‘const ranges::v3::repeat_n_view<char>&’
std::cout << text_lines << std::endl;
Если я понимаю ошибку, она говорит, что concat<repeat_n<iota<char>>,repeat_n<repeat_n<char>>>
нельзя преобразовать в repeat_n<char>
.Хорошо, я на самом деле хочу, чтобы concat конвертировался во что-то вроде repeat_n<repeat_n<char>>
, поэтому ошибка имеет смысл.
Но тогда я ожидал бы, что кут после строки 3 будет жаловаться, говоря, что что-то вроде concat<iota<char>,repeat_n<char>>
не может быть преобразовано в repeat_n<char>
.
Почему работает строка 3;какой тип это на самом деле становится?Что я должен сделать, чтобы строка 6 заработала?