1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
//
// zug: transducers for C++
// Copyright (C) 2019 Juan Pedro Bolivar Puente
//
// This software is distributed under the Boost Software License, Version 1.0.
// See accompanying file LICENSE or copy at http://boost.org/LICENSE_1_0.txt
//
#include <catch2/catch.hpp>
#include <zug/compose.hpp>
#include <zug/into_vector.hpp>
#include <zug/transducer/cycle.hpp>
#include <zug/transducer/dedupe.hpp>
using namespace zug;
TEST_CASE("dedupe, into")
{
// example1 {
auto v = std::vector<int>{1, 1, 2, 1, 1, 3, 2, 2, 2, 1};
auto res = into_vector(dedupe, v);
CHECK(res == (decltype(res){1, 2, 1, 3, 2, 1}));
// }
}
TEST_CASE("dedupe, variadic")
{
using tup = std::tuple<int, char>;
auto v = std::vector<int>{1, 2, 1, 1, 1, 1, 1};
auto res = into_vector(comp(cycle(std::string("aabb")), dedupe), v);
CHECK(
res ==
(decltype(res){
tup(1, 'a'), tup(2, 'a'), tup(1, 'b'), tup(1, 'a'), tup(1, 'b')}));
}
|