| 324 | } |
| 325 | |
| 326 | template<class V> void accept(V & v) const |
| 327 | { |
| 328 | #if !defined( BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP ) && !defined( BOOST_BORLANDC ) |
| 329 | |
| 330 | using boost::visit_each; |
| 331 | |
| 332 | #endif |
| 333 | BOOST_BIND_VISIT_EACH(v, f_, 0); |
| 334 | l_.accept(v); |
| 335 | } |
| 336 | |
| 337 | bool compare(this_type const & rhs) const |
| 338 | { |
no test coverage detected