| 715 | |
| 716 | template<class Expr> |
| 717 | static std::string expr_to_string(const Expr &expr) |
| 718 | { |
| 719 | meta_kernel tmp((std::string())); |
| 720 | tmp << expr; |
| 721 | return tmp.m_source.str(); |
| 722 | } |
| 723 | |
| 724 | template<class Predicate> |
| 725 | detail::invoked_function<bool, boost::tuple<Predicate> > if_(Predicate pred) const |
nothing calls this directly
no outgoing calls
no test coverage detected