mirror of
https://github.com/boostorg/phoenix.git
synced 2026-02-14 13:02:10 +00:00
[phoenix]
- Added documention for the function adaption macros
- Added the What's new section
- Fixed some bugs
- Added basic support for phx2 result type deduction, not in production yet
[spirit]
- Made necessary changes that reflect latest phoenix internal changes
[SVN r71227]
This commit is contained in:
116
test/function/function_tests_phx2.cpp
Normal file
116
test/function/function_tests_phx2.cpp
Normal file
@@ -0,0 +1,116 @@
|
||||
/*=============================================================================
|
||||
Copyright (c) 2001-2007 Joel de Guzman
|
||||
|
||||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
||||
==============================================================================*/
|
||||
#include <iostream>
|
||||
#include <cmath>
|
||||
#include <boost/detail/lightweight_test.hpp>
|
||||
#include <boost/phoenix/core.hpp>
|
||||
#include <boost/phoenix/operator.hpp>
|
||||
#include <boost/phoenix/function.hpp>
|
||||
|
||||
using namespace boost::phoenix;
|
||||
using namespace boost::phoenix::arg_names;
|
||||
using namespace std;
|
||||
|
||||
struct test_impl
|
||||
{
|
||||
typedef void result_type;
|
||||
void operator()() const
|
||||
{
|
||||
cout << "Test lazy functions...\n";
|
||||
}
|
||||
};
|
||||
|
||||
function<test_impl> test;
|
||||
|
||||
struct sqr_impl
|
||||
{
|
||||
template <typename Arg>
|
||||
struct result
|
||||
{
|
||||
typedef Arg type;
|
||||
};
|
||||
|
||||
template <typename Arg>
|
||||
Arg operator()(Arg n) const
|
||||
{
|
||||
return n * n;
|
||||
}
|
||||
};
|
||||
|
||||
function<sqr_impl> sqr;
|
||||
|
||||
struct fact_impl
|
||||
{
|
||||
template <typename Arg>
|
||||
struct result
|
||||
{
|
||||
typedef Arg type;
|
||||
};
|
||||
|
||||
template <typename Arg>
|
||||
Arg operator()(Arg n) const
|
||||
{
|
||||
return (n <= 0) ? 1 : n * (*this)(n-1);
|
||||
}
|
||||
};
|
||||
|
||||
function<fact_impl> fact;
|
||||
|
||||
struct pow_impl
|
||||
{
|
||||
template <typename Arg1, typename Arg2>
|
||||
struct result
|
||||
{
|
||||
typedef Arg1 type;
|
||||
};
|
||||
|
||||
template <typename Arg1, typename Arg2>
|
||||
Arg1 operator()(Arg1 a, Arg2 b) const
|
||||
{
|
||||
return pow(a, b);
|
||||
}
|
||||
};
|
||||
|
||||
function<pow_impl> power;
|
||||
|
||||
struct add_impl
|
||||
{
|
||||
template <typename Arg1, typename Arg2, typename Arg3, typename Arg4>
|
||||
struct result
|
||||
{
|
||||
typedef Arg1 type;
|
||||
};
|
||||
|
||||
template <typename Arg1, typename Arg2, typename Arg3, typename Arg4>
|
||||
Arg1 operator()(Arg1 a, Arg2 b, Arg3 c, Arg4 d) const
|
||||
{
|
||||
return a + b + c + d;
|
||||
}
|
||||
};
|
||||
|
||||
function<add_impl> add;
|
||||
|
||||
int
|
||||
main()
|
||||
{
|
||||
int i5 = 5;
|
||||
double d5 = 5, d3 = 3;
|
||||
|
||||
test()();
|
||||
BOOST_TEST(sqr(arg1)(i5) == (i5*i5));
|
||||
BOOST_TEST(fact(4)() == 24);
|
||||
BOOST_TEST(fact(arg1)(i5) == 120);
|
||||
BOOST_TEST((int)power(arg1, arg2)(d5, d3) == (int)pow(d5, d3));
|
||||
BOOST_TEST((sqr(arg1) + 5)(i5) == ((i5*i5)+5));
|
||||
BOOST_TEST(add(arg1, arg1, arg1, arg1)(i5) == (5+5+5+5));
|
||||
|
||||
int const ic5 = 5;
|
||||
// testing consts
|
||||
BOOST_TEST(sqr(arg1)(ic5) == (ic5*ic5));
|
||||
|
||||
return boost::report_errors();
|
||||
}
|
||||
Reference in New Issue
Block a user