|
| template<typename Iter > |
| Iter & | static_any_cast (static_any_t a, Iter *=0) |
| |
| template<typename C > |
| is_const< C > | is_const_coll (C &) |
| |
| template<typename C > |
static_any
< BOOST_DEDUCED_TYPENAME
C::iterator > | begin (C &t, mpl::false_) |
| |
| template<typename C > |
static_any
< BOOST_DEDUCED_TYPENAME
C::const_iterator > | begin (C const &t, mpl::true_) |
| |
| template<typename C > |
static_any
< BOOST_DEDUCED_TYPENAME
C::iterator > | end (C &t, mpl::false_) |
| |
| template<typename C > |
static_any
< BOOST_DEDUCED_TYPENAME
C::const_iterator > | end (C const &t, mpl::true_) |
| |
| template<typename C > |
| bool | done (static_any_t cur, static_any_t end, C &, mpl::false_) |
| |
| template<typename C > |
| bool | done (static_any_t cur, static_any_t end, C const &, mpl::true_) |
| |
| template<typename C > |
| void | next (static_any_t cur, C &, mpl::false_) |
| |
| template<typename C > |
| void | next (static_any_t cur, C const &, mpl::true_) |
| |
| template<class RefType , typename C > |
| RefType | deref (static_any_t cur, C &,::boost::type< RefType >, mpl::false_) |
| |
| template<class RefType , typename C > |
| RefType | deref (static_any_t cur, C const &,::boost::type< RefType >, mpl::true_) |
| |