2
0
mirror of https://github.com/boostorg/yap.git synced 2026-02-22 16:02:10 +00:00
Files
yap/test/compile_x_plus_term.cpp

213 lines
5.0 KiB
C++

#include <boost/yap/expression.hpp>
#include <boost/yap/expression_free_operators.hpp>
#include <string>
template <typename T>
using term = boost::yap::terminal<boost::yap::expression, T>;
template <typename T>
using ref = boost::yap::expression_ref<boost::yap::expression, T>;
namespace yap = boost::yap;
namespace bh = boost::hana;
void compile_x_plus_term ()
{
using namespace std::literals;
// char const * string
{
term<double> unity{1.0};
yap::expression<
yap::expr_kind::plus,
bh::tuple<
term<char const *>,
ref <term<double>&>
>
> unevaluated_expr = "3" + unity;
(void)unevaluated_expr;
}
// std::string temporary
{
term<double> const unity{1.0};
yap::expression<
yap::expr_kind::plus,
bh::tuple<
term<std::string>,
ref<term<double> const &>
>
> unevaluated_expr = "3"s + unity;
(void)unevaluated_expr;
}
// arrays
{
term<double> unity{1.0};
int ints[] = {1, 2};
yap::expression<
yap::expr_kind::plus,
bh::tuple<
term<int *>,
ref<term<double> &>
>
> unevaluated_expr = ints + unity;
(void)unevaluated_expr;
}
{
term<double> unity{1.0};
int const ints[] = {1, 2};
yap::expression<
yap::expr_kind::plus,
bh::tuple<
term<int const *>,
ref<term<double> &>
>
> unevaluated_expr = ints + unity;
(void)unevaluated_expr;
}
{
term<double> unity{1.0};
int ints[] = {1, 2};
yap::expression<
yap::expr_kind::plus,
bh::tuple<
term<int *>,
ref<term<double> &>
>
> unevaluated_expr = std::move(ints) + unity;
(void)unevaluated_expr;
}
// pointers
{
term<double> unity{1.0};
int ints[] = {1, 2};
int * int_ptr = ints;
yap::expression<
yap::expr_kind::plus,
bh::tuple<
term<int * &>,
ref<term<double> &>
>
> unevaluated_expr = int_ptr + unity;
(void)unevaluated_expr;
}
{
term<double> unity{1.0};
int const ints[] = {1, 2};
int const * int_ptr = ints;
yap::expression<
yap::expr_kind::plus,
bh::tuple<
term<int const * &>,
ref<term<double> &>
>
> unevaluated_expr = int_ptr + unity;
(void)unevaluated_expr;
}
{
term<double> unity{1.0};
int ints[] = {1, 2};
int * int_ptr = ints;
yap::expression<
yap::expr_kind::plus,
bh::tuple<
term<int *>,
ref<term<double> &>
>
> unevaluated_expr = std::move(int_ptr) + unity;
(void)unevaluated_expr;
}
// const pointers
{
term<double> unity{1.0};
int ints[] = {1, 2};
int * const int_ptr = ints;
yap::expression<
yap::expr_kind::plus,
bh::tuple<
term<int * const &>,
ref<term<double> &>
>
> unevaluated_expr = int_ptr + unity;
(void)unevaluated_expr;
}
{
term<double> unity{1.0};
int const ints[] = {1, 2};
int const * const int_ptr = ints;
yap::expression<
yap::expr_kind::plus,
bh::tuple<
term<int const * const &>,
ref<term<double> &>
>
> unevaluated_expr = int_ptr + unity;
(void)unevaluated_expr;
}
{
term<double> unity{1.0};
int ints[] = {1, 2};
int * const int_ptr = ints;
yap::expression<
yap::expr_kind::plus,
bh::tuple<
term<int * const>,
ref<term<double> &>
>
> unevaluated_expr = std::move(int_ptr) + unity;
(void)unevaluated_expr;
}
// values
{
term<double> unity{1.0};
int i = 1;
yap::expression<
yap::expr_kind::plus,
bh::tuple<
term<int &>,
ref<term<double> &>
>
> unevaluated_expr = i + unity;
(void)unevaluated_expr;
}
{
term<double> unity{1.0};
int const i = 1;
yap::expression<
yap::expr_kind::plus,
bh::tuple<
term<int const &>,
ref<term<double> &>
>
> unevaluated_expr = i + unity;
(void)unevaluated_expr;
}
{
term<double> unity{1.0};
int i = 1;
yap::expression<
yap::expr_kind::plus,
bh::tuple<
term<int>,
ref<term<double> &>
>
> unevaluated_expr = std::move(i) + unity;
(void)unevaluated_expr;
}
}