|
| template<typename U > |
| static auto | test_select_const (int) -> decltype(std::declval< const U & >().select(std::declval< size_t >()), std::true_type()) |
| |
| template<typename > |
| static std::false_type | test_select_const (...) |
| |
| template<typename U > |
| static auto | test_select_nonconst (int) -> decltype(std::declval< U & >().select(std::declval< size_t >()), std::true_type()) |
| |
| template<typename > |
| static std::false_type | test_select_nonconst (...) |
| |
| template<typename U > |
| static auto | test_remove_pos (int) -> decltype(std::declval< U & >().remove_pos(std::declval< size_t >()), std::true_type()) |
| |
| template<typename > |
| static std::false_type | test_remove_pos (...) |
| |
| template<typename U > |
| static auto | test_split_pos (int) -> decltype(std::declval< U & >().split_pos(std::declval< size_t >(), std::declval< U & >(), std::declval< U & >()), std::true_type()) |
| |
| template<typename > |
| static std::false_type | test_split_pos (...) |
| |
| template<typename U > |
| static auto | test_position_const (int) -> decltype(std::declval< const U & >().position(std::declval< const Key & >()), std::true_type()) |
| |
| template<typename > |
| static std::false_type | test_position_const (...) |
| |
| template<typename U > |
| static auto | test_position_nonconst (int) -> decltype(std::declval< U & >().position(std::declval< const Key & >()), std::true_type()) |
| |
| template<typename > |
| static std::false_type | test_position_nonconst (...) |
| |
| template<typename U > |
| static auto | test_find_position_const (int) -> decltype(std::declval< const U & >().find_position(std::declval< const Key & >()), std::true_type()) |
| |
| template<typename > |
| static std::false_type | test_find_position_const (...) |
| |
| template<typename U > |
| static auto | test_find_position_nonconst (int) -> decltype(std::declval< U & >().find_position(std::declval< const Key & >()), std::true_type()) |
| |
| template<typename > |
| static std::false_type | test_find_position_nonconst (...) |
| |
Definition at line 283 of file tpl_dynSetTree.H.