12345678910111213141516171819202122232425262728293031 |
- #ifndef BOOST_ICL_CONCEPT_ELEMENT_SET_VALUE_HPP_JOFA_100924
- #define BOOST_ICL_CONCEPT_ELEMENT_SET_VALUE_HPP_JOFA_100924
- #include <boost/icl/type_traits/is_element_container.hpp>
- namespace boost{ namespace icl
- {
- template<class Type, class Iterator>
- inline typename enable_if<is_element_set<Type>, const typename Type::key_type>::type&
- co_value(Iterator it_)
- {
- return *it_;
- }
- }}
- #endif
|