File: drop.cpp

package info (click to toggle)
zug 0.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,076 kB
  • sloc: cpp: 6,209; makefile: 203; sh: 88; python: 62
file content (47 lines) | stat: -rw-r--r-- 1,151 bytes parent folder | download | duplicates (2)
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
38
39
40
41
42
43
44
45
46
47
//
// 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/drop.hpp>
#include <zug/transducer/take.hpp>

using namespace zug;

TEST_CASE("drop, none")
{
    auto v   = std::vector<int>{1, 2, 3, 4, 5};
    auto res = into_vector(drop(0), v);
    CHECK(res == (decltype(res){1, 2, 3, 4, 5}));
}

TEST_CASE("drop, some")
{
    // example1 {
    auto v   = std::vector<int>{1, 2, 3, 4, 5};
    auto res = into_vector(drop(2), v);
    CHECK(res == (decltype(res){3, 4, 5}));
    // }
}

TEST_CASE("drop, everything")
{
    auto v   = std::vector<int>{1, 2, 3, 4, 5};
    auto res = into_vector(drop(6), v);
    CHECK(res == (decltype(res){}));
}

TEST_CASE("drop, compose")
{
    using namespace std::placeholders;
    auto v   = std::vector<int>{1, 2, 3, 4, 5};
    auto res = into_vector(comp(drop(2), take(2)), v);
    CHECK(res == (decltype(res){3, 4}));
}