2011-11-13 08:54:38 +00:00
|
|
|
#ifndef SPROUT_WEED_OPERATOR_ADDRESS_OF_HPP
|
|
|
|
#define SPROUT_WEED_OPERATOR_ADDRESS_OF_HPP
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/utility/forward.hpp>
|
|
|
|
#include <sprout/weed/expr/tag.hpp>
|
|
|
|
#include <sprout/weed/expr/make_expr.hpp>
|
|
|
|
#include <sprout/weed/traits/expr/expr_of.hpp>
|
|
|
|
#include <sprout/weed/traits/parser/is_parser.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace weed {
|
|
|
|
//
|
|
|
|
// operator&
|
|
|
|
//
|
|
|
|
template<
|
|
|
|
typename Arg,
|
|
|
|
typename = typename std::enable_if<
|
|
|
|
sprout::weed::traits::is_parser<
|
2013-03-26 17:02:16 +00:00
|
|
|
typename std::remove_reference<Arg>::type
|
2011-11-13 08:54:38 +00:00
|
|
|
>::value
|
|
|
|
>::type
|
|
|
|
>
|
2012-04-04 13:23:41 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::weed::traits::expr_of<
|
2011-11-13 08:54:38 +00:00
|
|
|
sprout::weed::tag::address_of,
|
|
|
|
Arg
|
2011-11-14 10:45:59 +00:00
|
|
|
>::type operator&(Arg&& arg) {
|
2011-11-13 08:54:38 +00:00
|
|
|
return sprout::weed::make_expr<sprout::weed::tag::address_of>(
|
|
|
|
sprout::forward<Arg>(arg)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} // namespace weed
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_WEED_OPERATOR_ADDRESS_OF_HPP
|