Home
last modified time | relevance | path

Searched refs:Iter (Results 1 – 25 of 954) sorted by relevance

12345678910>>...39

/external/libcxx/test/std/algorithms/alg.nonmodifying/alg.search/
Dsearch_n.pass.cpp34 template <class Iter>
40 assert(std::search_n(Iter(ia), Iter(ia+sa), 0, 0) == Iter(ia)); in test()
41 assert(std::search_n(Iter(ia), Iter(ia+sa), 1, 0) == Iter(ia+0)); in test()
42 assert(std::search_n(Iter(ia), Iter(ia+sa), 2, 0) == Iter(ia+sa)); in test()
43 assert(std::search_n(Iter(ia), Iter(ia+sa), sa, 0) == Iter(ia+sa)); in test()
44 assert(std::search_n(Iter(ia), Iter(ia+sa), 0, 3) == Iter(ia)); in test()
45 assert(std::search_n(Iter(ia), Iter(ia+sa), 1, 3) == Iter(ia+3)); in test()
46 assert(std::search_n(Iter(ia), Iter(ia+sa), 2, 3) == Iter(ia+sa)); in test()
47 assert(std::search_n(Iter(ia), Iter(ia+sa), sa, 3) == Iter(ia+sa)); in test()
48 assert(std::search_n(Iter(ia), Iter(ia+sa), 0, 5) == Iter(ia)); in test()
[all …]
Dsearch_n_pred.pass.cpp47 template <class Iter>
54 assert(std::search_n(Iter(ia), Iter(ia+sa), 0, 0, count_equal()) == Iter(ia)); in test()
57 assert(std::search_n(Iter(ia), Iter(ia+sa), 1, 0, count_equal()) == Iter(ia+0)); in test()
60 assert(std::search_n(Iter(ia), Iter(ia+sa), 2, 0, count_equal()) == Iter(ia+sa)); in test()
63 assert(std::search_n(Iter(ia), Iter(ia+sa), sa, 0, count_equal()) == Iter(ia+sa)); in test()
66 assert(std::search_n(Iter(ia), Iter(ia+sa), 0, 3, count_equal()) == Iter(ia)); in test()
69 assert(std::search_n(Iter(ia), Iter(ia+sa), 1, 3, count_equal()) == Iter(ia+3)); in test()
72 assert(std::search_n(Iter(ia), Iter(ia+sa), 2, 3, count_equal()) == Iter(ia+sa)); in test()
75 assert(std::search_n(Iter(ia), Iter(ia+sa), sa, 3, count_equal()) == Iter(ia+sa)); in test()
78 assert(std::search_n(Iter(ia), Iter(ia+sa), 0, 5, count_equal()) == Iter(ia)); in test()
[all …]
/external/llvm-project/libcxx/test/std/algorithms/alg.nonmodifying/alg.search/
Dsearch_n.pass.cpp33 template <class Iter>
39 assert(std::search_n(Iter(ia), Iter(ia+sa), 0, 0) == Iter(ia)); in test()
40 assert(std::search_n(Iter(ia), Iter(ia+sa), 1, 0) == Iter(ia+0)); in test()
41 assert(std::search_n(Iter(ia), Iter(ia+sa), 2, 0) == Iter(ia+sa)); in test()
42 assert(std::search_n(Iter(ia), Iter(ia+sa), sa, 0) == Iter(ia+sa)); in test()
43 assert(std::search_n(Iter(ia), Iter(ia+sa), 0, 3) == Iter(ia)); in test()
44 assert(std::search_n(Iter(ia), Iter(ia+sa), 1, 3) == Iter(ia+3)); in test()
45 assert(std::search_n(Iter(ia), Iter(ia+sa), 2, 3) == Iter(ia+sa)); in test()
46 assert(std::search_n(Iter(ia), Iter(ia+sa), sa, 3) == Iter(ia+sa)); in test()
47 assert(std::search_n(Iter(ia), Iter(ia+sa), 0, 5) == Iter(ia)); in test()
[all …]
Dsearch_n_pred.pass.cpp46 template <class Iter>
53 assert(std::search_n(Iter(ia), Iter(ia+sa), 0, 0, count_equal()) == Iter(ia)); in test()
56 assert(std::search_n(Iter(ia), Iter(ia+sa), 1, 0, count_equal()) == Iter(ia+0)); in test()
59 assert(std::search_n(Iter(ia), Iter(ia+sa), 2, 0, count_equal()) == Iter(ia+sa)); in test()
62 assert(std::search_n(Iter(ia), Iter(ia+sa), sa, 0, count_equal()) == Iter(ia+sa)); in test()
65 assert(std::search_n(Iter(ia), Iter(ia+sa), 0, 3, count_equal()) == Iter(ia)); in test()
68 assert(std::search_n(Iter(ia), Iter(ia+sa), 1, 3, count_equal()) == Iter(ia+3)); in test()
71 assert(std::search_n(Iter(ia), Iter(ia+sa), 2, 3, count_equal()) == Iter(ia+sa)); in test()
74 assert(std::search_n(Iter(ia), Iter(ia+sa), sa, 3, count_equal()) == Iter(ia+sa)); in test()
77 assert(std::search_n(Iter(ia), Iter(ia+sa), 0, 5, count_equal()) == Iter(ia)); in test()
[all …]
/external/libcxx/test/std/algorithms/alg.sorting/alg.sort/is.sorted/
Dis_sorted_until.pass.cpp31 template <class Iter>
38 assert(std::is_sorted_until(Iter(a), Iter(a)) == Iter(a)); in test()
39 assert(std::is_sorted_until(Iter(a), Iter(a+sa)) == Iter(a+sa)); in test()
45 assert(std::is_sorted_until(Iter(a), Iter(a+sa)) == Iter(a+sa)); in test()
50 assert(std::is_sorted_until(Iter(a), Iter(a+sa)) == Iter(a+sa)); in test()
55 assert(std::is_sorted_until(Iter(a), Iter(a+sa)) == Iter(a+1)); in test()
60 assert(std::is_sorted_until(Iter(a), Iter(a+sa)) == Iter(a+sa)); in test()
66 assert(std::is_sorted_until(Iter(a), Iter(a+sa)) == Iter(a+sa)); in test()
71 assert(std::is_sorted_until(Iter(a), Iter(a+sa)) == Iter(a+sa)); in test()
76 assert(std::is_sorted_until(Iter(a), Iter(a+sa)) == Iter(a+2)); in test()
[all …]
Dis_sorted_until_comp.pass.cpp32 template <class Iter>
39 assert(std::is_sorted_until(Iter(a), Iter(a), std::greater<int>()) == Iter(a)); in test()
40 assert(std::is_sorted_until(Iter(a), Iter(a+sa), std::greater<int>()) == Iter(a+sa)); in test()
46 assert(std::is_sorted_until(Iter(a), Iter(a+sa), std::greater<int>()) == Iter(a+sa)); in test()
51 assert(std::is_sorted_until(Iter(a), Iter(a+sa), std::greater<int>()) == Iter(a+1)); in test()
56 assert(std::is_sorted_until(Iter(a), Iter(a+sa), std::greater<int>()) == Iter(a+sa)); in test()
61 assert(std::is_sorted_until(Iter(a), Iter(a+sa), std::greater<int>()) == Iter(a+sa)); in test()
67 assert(std::is_sorted_until(Iter(a), Iter(a+sa), std::greater<int>()) == Iter(a+sa)); in test()
72 assert(std::is_sorted_until(Iter(a), Iter(a+sa), std::greater<int>()) == Iter(a+2)); in test()
77 assert(std::is_sorted_until(Iter(a), Iter(a+sa), std::greater<int>()) == Iter(a+1)); in test()
[all …]
Dis_sorted.pass.cpp31 template <class Iter>
38 assert(std::is_sorted(Iter(a), Iter(a))); in test()
39 assert(std::is_sorted(Iter(a), Iter(a+sa))); in test()
45 assert(std::is_sorted(Iter(a), Iter(a+sa))); in test()
50 assert(std::is_sorted(Iter(a), Iter(a+sa))); in test()
55 assert(!std::is_sorted(Iter(a), Iter(a+sa))); in test()
60 assert(std::is_sorted(Iter(a), Iter(a+sa))); in test()
66 assert(std::is_sorted(Iter(a), Iter(a+sa))); in test()
71 assert(std::is_sorted(Iter(a), Iter(a+sa))); in test()
76 assert(!std::is_sorted(Iter(a), Iter(a+sa))); in test()
[all …]
Dis_sorted_comp.pass.cpp32 template <class Iter>
39 assert(std::is_sorted(Iter(a), Iter(a))); in test()
40 assert(std::is_sorted(Iter(a), Iter(a+sa), std::greater<int>())); in test()
46 assert(std::is_sorted(Iter(a), Iter(a+sa), std::greater<int>())); in test()
51 assert(!std::is_sorted(Iter(a), Iter(a+sa), std::greater<int>())); in test()
56 assert(std::is_sorted(Iter(a), Iter(a+sa), std::greater<int>())); in test()
61 assert(std::is_sorted(Iter(a), Iter(a+sa), std::greater<int>())); in test()
67 assert(std::is_sorted(Iter(a), Iter(a+sa), std::greater<int>())); in test()
72 assert(!std::is_sorted(Iter(a), Iter(a+sa), std::greater<int>())); in test()
77 assert(!std::is_sorted(Iter(a), Iter(a+sa), std::greater<int>())); in test()
[all …]
/external/llvm-project/libcxx/test/std/algorithms/alg.sorting/alg.sort/is.sorted/
Dis_sorted_until.pass.cpp31 template <class Iter>
38 assert(std::is_sorted_until(Iter(a), Iter(a)) == Iter(a)); in test()
39 assert(std::is_sorted_until(Iter(a), Iter(a+sa)) == Iter(a+sa)); in test()
45 assert(std::is_sorted_until(Iter(a), Iter(a+sa)) == Iter(a+sa)); in test()
50 assert(std::is_sorted_until(Iter(a), Iter(a+sa)) == Iter(a+sa)); in test()
55 assert(std::is_sorted_until(Iter(a), Iter(a+sa)) == Iter(a+1)); in test()
60 assert(std::is_sorted_until(Iter(a), Iter(a+sa)) == Iter(a+sa)); in test()
66 assert(std::is_sorted_until(Iter(a), Iter(a+sa)) == Iter(a+sa)); in test()
71 assert(std::is_sorted_until(Iter(a), Iter(a+sa)) == Iter(a+sa)); in test()
76 assert(std::is_sorted_until(Iter(a), Iter(a+sa)) == Iter(a+2)); in test()
[all …]
Dis_sorted_until_comp.pass.cpp32 template <class Iter>
39 assert(std::is_sorted_until(Iter(a), Iter(a), std::greater<int>()) == Iter(a)); in test()
40 assert(std::is_sorted_until(Iter(a), Iter(a+sa), std::greater<int>()) == Iter(a+sa)); in test()
46 assert(std::is_sorted_until(Iter(a), Iter(a+sa), std::greater<int>()) == Iter(a+sa)); in test()
51 assert(std::is_sorted_until(Iter(a), Iter(a+sa), std::greater<int>()) == Iter(a+1)); in test()
56 assert(std::is_sorted_until(Iter(a), Iter(a+sa), std::greater<int>()) == Iter(a+sa)); in test()
61 assert(std::is_sorted_until(Iter(a), Iter(a+sa), std::greater<int>()) == Iter(a+sa)); in test()
67 assert(std::is_sorted_until(Iter(a), Iter(a+sa), std::greater<int>()) == Iter(a+sa)); in test()
72 assert(std::is_sorted_until(Iter(a), Iter(a+sa), std::greater<int>()) == Iter(a+2)); in test()
77 assert(std::is_sorted_until(Iter(a), Iter(a+sa), std::greater<int>()) == Iter(a+1)); in test()
[all …]
Dis_sorted.pass.cpp31 template <class Iter>
38 assert(std::is_sorted(Iter(a), Iter(a))); in test()
39 assert(std::is_sorted(Iter(a), Iter(a+sa))); in test()
45 assert(std::is_sorted(Iter(a), Iter(a+sa))); in test()
50 assert(std::is_sorted(Iter(a), Iter(a+sa))); in test()
55 assert(!std::is_sorted(Iter(a), Iter(a+sa))); in test()
60 assert(std::is_sorted(Iter(a), Iter(a+sa))); in test()
66 assert(std::is_sorted(Iter(a), Iter(a+sa))); in test()
71 assert(std::is_sorted(Iter(a), Iter(a+sa))); in test()
76 assert(!std::is_sorted(Iter(a), Iter(a+sa))); in test()
[all …]
Dis_sorted_comp.pass.cpp32 template <class Iter>
39 assert(std::is_sorted(Iter(a), Iter(a))); in test()
40 assert(std::is_sorted(Iter(a), Iter(a+sa), std::greater<int>())); in test()
46 assert(std::is_sorted(Iter(a), Iter(a+sa), std::greater<int>())); in test()
51 assert(!std::is_sorted(Iter(a), Iter(a+sa), std::greater<int>())); in test()
56 assert(std::is_sorted(Iter(a), Iter(a+sa), std::greater<int>())); in test()
61 assert(std::is_sorted(Iter(a), Iter(a+sa), std::greater<int>())); in test()
67 assert(std::is_sorted(Iter(a), Iter(a+sa), std::greater<int>())); in test()
72 assert(!std::is_sorted(Iter(a), Iter(a+sa), std::greater<int>())); in test()
77 assert(!std::is_sorted(Iter(a), Iter(a+sa), std::greater<int>())); in test()
[all …]
/external/llvm-project/libcxx/test/std/algorithms/alg.modifying.operations/alg.rotate/
Drotate.pass.cpp26 template <class Iter>
32 Iter r = std::rotate(Iter(ia), Iter(ia), Iter(ia)); in test()
35 r = std::rotate(Iter(ia), Iter(ia), Iter(ia+sa)); in test()
38 r = std::rotate(Iter(ia), Iter(ia+sa), Iter(ia+sa)); in test()
44 r = std::rotate(Iter(ib), Iter(ib), Iter(ib+sb)); in test()
48 r = std::rotate(Iter(ib), Iter(ib+1), Iter(ib+sb)); in test()
52 r = std::rotate(Iter(ib), Iter(ib+sb), Iter(ib+sb)); in test()
59 r = std::rotate(Iter(ic), Iter(ic), Iter(ic+sc)); in test()
64 r = std::rotate(Iter(ic), Iter(ic+1), Iter(ic+sc)); in test()
69 r = std::rotate(Iter(ic), Iter(ic+2), Iter(ic+sc)); in test()
[all …]
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.rotate/
Drotate.pass.cpp23 template <class Iter>
29 Iter r = std::rotate(Iter(ia), Iter(ia), Iter(ia)); in test()
32 r = std::rotate(Iter(ia), Iter(ia), Iter(ia+sa)); in test()
35 r = std::rotate(Iter(ia), Iter(ia+sa), Iter(ia+sa)); in test()
41 r = std::rotate(Iter(ib), Iter(ib), Iter(ib+sb)); in test()
45 r = std::rotate(Iter(ib), Iter(ib+1), Iter(ib+sb)); in test()
49 r = std::rotate(Iter(ib), Iter(ib+sb), Iter(ib+sb)); in test()
56 r = std::rotate(Iter(ic), Iter(ic), Iter(ic+sc)); in test()
61 r = std::rotate(Iter(ic), Iter(ic+1), Iter(ic+sc)); in test()
66 r = std::rotate(Iter(ic), Iter(ic+2), Iter(ic+sc)); in test()
[all …]
/external/Reactive-Extensions/RxCpp/Ix/CPP/src/cpplinq/
Dlinq_iterators.hpp18 template <class Iter>
20 std::is_convertible<Iter, use_default_iterator_operators>::value,
21 Iter
23 operator+(const Iter& it, typename std::iterator_traits<Iter>::distance_type n) { in operator +()
26 template <class Iter>
28 std::is_convertible<Iter, use_default_iterator_operators>::value,
29 Iter
31 operator-(const Iter& it, typename std::iterator_traits<Iter>::distance_type n) { in operator -()
34 template <class Iter>
36 std::is_convertible<Iter, use_default_iterator_operators>::value,
[all …]
/external/swiftshader/third_party/subzero/src/
DIceRegAlloc.cpp386 void LinearScan::addSpillFill(IterationState &Iter) { in addSpillFill() argument
401 assert(!Iter.Cur->getLiveRange().isEmpty()); in addSpillFill()
402 InstNumberT Start = Iter.Cur->getLiveRange().getStart(); in addSpillFill()
403 InstNumberT End = Iter.Cur->getLiveRange().getEnd(); in addSpillFill()
404 CfgNode *Node = Func->getVMetadata()->getLocalUseNode(Iter.Cur); in addSpillFill()
425 Iter.RegMask[RegAlias] = false; in addSpillFill()
434 const RegNumT RegNum = *RegNumBVIter(Iter.RegMask).begin(); in addSpillFill()
435 Iter.Cur->setRegNumTmp(RegNum); in addSpillFill()
436 Variable *Preg = Target->getPhysicalRegister(RegNum, Iter.Cur->getType()); in addSpillFill()
439 Variable *SpillLoc = Func->makeVariable(Iter.Cur->getType()); in addSpillFill()
[all …]
/external/libcxx/test/std/algorithms/alg.sorting/alg.sort/partial.sort.copy/
Dpartial_sort_copy.pass.cpp28 template <class Iter>
37 int* r = std::partial_sort_copy(Iter(input), Iter(input+N), output, output+M); in test_larger_sorts()
47 template <class Iter>
51 test_larger_sorts<Iter>(N, 0); in test_larger_sorts()
52 test_larger_sorts<Iter>(N, 1); in test_larger_sorts()
53 test_larger_sorts<Iter>(N, 2); in test_larger_sorts()
54 test_larger_sorts<Iter>(N, 3); in test_larger_sorts()
55 test_larger_sorts<Iter>(N, N/2-1); in test_larger_sorts()
56 test_larger_sorts<Iter>(N, N/2); in test_larger_sorts()
57 test_larger_sorts<Iter>(N, N/2+1); in test_larger_sorts()
[all …]
Dpartial_sort_copy_comp.pass.cpp31 template <class Iter>
40 int* r = std::partial_sort_copy(Iter(input), Iter(input+N), output, output+M, in test_larger_sorts()
51 template <class Iter>
55 test_larger_sorts<Iter>(N, 0); in test_larger_sorts()
56 test_larger_sorts<Iter>(N, 1); in test_larger_sorts()
57 test_larger_sorts<Iter>(N, 2); in test_larger_sorts()
58 test_larger_sorts<Iter>(N, 3); in test_larger_sorts()
59 test_larger_sorts<Iter>(N, N/2-1); in test_larger_sorts()
60 test_larger_sorts<Iter>(N, N/2); in test_larger_sorts()
61 test_larger_sorts<Iter>(N, N/2+1); in test_larger_sorts()
[all …]
/external/llvm-project/libcxx/test/std/algorithms/alg.sorting/alg.sort/partial.sort.copy/
Dpartial_sort_copy.pass.cpp28 template <class Iter>
37 int* r = std::partial_sort_copy(Iter(input), Iter(input+N), output, output+M); in test_larger_sorts()
47 template <class Iter>
51 test_larger_sorts<Iter>(N, 0); in test_larger_sorts()
52 test_larger_sorts<Iter>(N, 1); in test_larger_sorts()
53 test_larger_sorts<Iter>(N, 2); in test_larger_sorts()
54 test_larger_sorts<Iter>(N, 3); in test_larger_sorts()
55 test_larger_sorts<Iter>(N, N/2-1); in test_larger_sorts()
56 test_larger_sorts<Iter>(N, N/2); in test_larger_sorts()
57 test_larger_sorts<Iter>(N, N/2+1); in test_larger_sorts()
[all …]
Dpartial_sort_copy_comp.pass.cpp31 template <class Iter>
40 int* r = std::partial_sort_copy(Iter(input), Iter(input+N), output, output+M, in test_larger_sorts()
51 template <class Iter>
55 test_larger_sorts<Iter>(N, 0); in test_larger_sorts()
56 test_larger_sorts<Iter>(N, 1); in test_larger_sorts()
57 test_larger_sorts<Iter>(N, 2); in test_larger_sorts()
58 test_larger_sorts<Iter>(N, 3); in test_larger_sorts()
59 test_larger_sorts<Iter>(N, N/2-1); in test_larger_sorts()
60 test_larger_sorts<Iter>(N, N/2); in test_larger_sorts()
61 test_larger_sorts<Iter>(N, N/2+1); in test_larger_sorts()
[all …]
/external/libcxx/test/std/numerics/numeric.ops/transform.reduce/
Dtransform_reduce_iter_iter_init_bop_uop.pass.cpp52 template <class Iter>
59 test(Iter(ia), Iter(ia), 0, std::plus<>(), identity(), 0); in test()
60 test(Iter(ia), Iter(ia), 1, std::multiplies<>(), identity(), 1); in test()
61 test(Iter(ia), Iter(ia+1), 0, std::multiplies<>(), identity(), 0); in test()
62 test(Iter(ia), Iter(ia+1), 2, std::plus<>(), identity(), 3); in test()
63 test(Iter(ia), Iter(ia+2), 0, std::plus<>(), identity(), 3); in test()
64 test(Iter(ia), Iter(ia+2), 3, std::multiplies<>(), identity(), 6); in test()
65 test(Iter(ia), Iter(ia+sa), 4, std::multiplies<>(), identity(), 2880); in test()
66 test(Iter(ia), Iter(ia+sa), 4, std::plus<>(), identity(), 25); in test()
68 test(Iter(ia), Iter(ia), 0, std::plus<>(), twice(), 0); in test()
[all …]
/external/llvm-project/libcxx/test/std/numerics/numeric.ops/transform.reduce/
Dtransform_reduce_iter_iter_init_bop_uop.pass.cpp55 template <class Iter>
62 test(Iter(ia), Iter(ia), 0, std::plus<>(), identity(), 0); in test()
63 test(Iter(ia), Iter(ia), 1, std::multiplies<>(), identity(), 1); in test()
64 test(Iter(ia), Iter(ia+1), 0, std::multiplies<>(), identity(), 0); in test()
65 test(Iter(ia), Iter(ia+1), 2, std::plus<>(), identity(), 3); in test()
66 test(Iter(ia), Iter(ia+2), 0, std::plus<>(), identity(), 3); in test()
67 test(Iter(ia), Iter(ia+2), 3, std::multiplies<>(), identity(), 6); in test()
68 test(Iter(ia), Iter(ia+sa), 4, std::multiplies<>(), identity(), 2880); in test()
69 test(Iter(ia), Iter(ia+sa), 4, std::plus<>(), identity(), 25); in test()
71 test(Iter(ia), Iter(ia), 0, std::plus<>(), twice(), 0); in test()
[all …]
/external/libcxx/test/std/numerics/numeric.ops/accumulate/
Daccumulate.pass.cpp23 template <class Iter, class T>
25 test(Iter first, Iter last, T init, T x) in test()
30 template <class Iter>
36 test(Iter(ia), Iter(ia), 0, 0); in test()
37 test(Iter(ia), Iter(ia), 10, 10); in test()
38 test(Iter(ia), Iter(ia+1), 0, 1); in test()
39 test(Iter(ia), Iter(ia+1), 10, 11); in test()
40 test(Iter(ia), Iter(ia+2), 0, 3); in test()
41 test(Iter(ia), Iter(ia+2), 10, 13); in test()
42 test(Iter(ia), Iter(ia+sa), 0, 21); in test()
[all …]
Daccumulate_op.pass.cpp25 template <class Iter, class T>
27 test(Iter first, Iter last, T init, T x) in test()
32 template <class Iter>
38 test(Iter(ia), Iter(ia), 1, 1); in test()
39 test(Iter(ia), Iter(ia), 10, 10); in test()
40 test(Iter(ia), Iter(ia+1), 1, 1); in test()
41 test(Iter(ia), Iter(ia+1), 10, 10); in test()
42 test(Iter(ia), Iter(ia+2), 1, 2); in test()
43 test(Iter(ia), Iter(ia+2), 10, 20); in test()
44 test(Iter(ia), Iter(ia+sa), 1, 720); in test()
[all …]
/external/llvm-project/libcxx/test/std/numerics/numeric.ops/accumulate/
Daccumulate.pass.cpp26 template <class Iter, class T>
28 test(Iter first, Iter last, T init, T x) in test()
33 template <class Iter>
39 test(Iter(ia), Iter(ia), 0, 0); in test()
40 test(Iter(ia), Iter(ia), 10, 10); in test()
41 test(Iter(ia), Iter(ia+1), 0, 1); in test()
42 test(Iter(ia), Iter(ia+1), 10, 11); in test()
43 test(Iter(ia), Iter(ia+2), 0, 3); in test()
44 test(Iter(ia), Iter(ia+2), 10, 13); in test()
45 test(Iter(ia), Iter(ia+sa), 0, 21); in test()
[all …]

12345678910>>...39