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 48 49 50 51 52 53 54 55 56 57 58 59 60
|
//
// 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 <zug/meta.hpp>
#include <zug/util.hpp>
#include <catch2/catch.hpp>
using namespace zug;
TEST_CASE("output_of, identity")
{
using meta::pack;
using identity_t = decltype(identity);
static_assert(output_of_t<identity_t>{} == pack<>{}, "");
static_assert(output_of_t<identity_t, int>{} == pack<int&&>{}, "");
static_assert(
output_of_t<identity_t, int, float>{} == pack<int&&, float&&>{}, "");
static_assert(output_of_t<identity_t, meta::pack<int, float>>{} ==
pack<int&&, float&&>{},
"");
static_assert(output_of_t<identity_t, int&>{} == pack<int&>{}, "");
static_assert(output_of_t<identity_t, int&, const float&>{} ==
pack<int&, const float&>{},
"");
static_assert(output_of_t<identity_t, int&&>{} == pack<int&&>{}, "");
static_assert(output_of_t<identity_t, const int&&, float&&>{} ==
pack<const int&&, float&&>{},
"");
}
TEST_CASE("result_of, identity")
{
using meta::pack;
using identity_t = decltype(identity);
static_assert(pack<result_of_t<identity_t>>{} == pack<std::tuple<>>{}, "");
static_assert(pack<result_of_t<identity_t, int>>{} == pack<int>{}, "");
static_assert(pack<result_of_t<identity_t, int, float>>{} ==
pack<std::tuple<int, float>>{},
"");
static_assert(pack<result_of_t<identity_t, meta::pack<int, float>>>{} ==
pack<std::tuple<int, float>>{},
"");
static_assert(pack<result_of_t<identity_t, int&>>{} == pack<int>{}, "");
static_assert(pack<result_of_t<identity_t, int&, float&>>{} ==
pack<std::tuple<int, float>>{},
"");
}
|