File: map_indexed.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 (25 lines) | stat: -rw-r--r-- 686 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
//
// 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/transduce.hpp>
#include <zug/transducer/map_indexed.hpp>

using namespace zug;

TEST_CASE("map_indexed, mapping")
{
    // example1 {
    auto v      = std::vector<std::string>{"1", "2", "3", "6"};
    auto timesi = [](std::string x, std::size_t index) {
        return std::stoi(x) * static_cast<int>(index);
    };
    CHECK(transduce(map_indexed(timesi), std::plus<int>{}, 1, v) == 27);
    // }
}