Lines Matching refs:NodeTy
37 template <typename NodeTy>
39 static_assert(!std::is_pointer<NodeTy>::value &&
40 !std::is_reference<NodeTy>::value,
44 typename std::conditional<std::is_const<NodeTy>::value,
45 typename NodeTy::const_iterator,
46 typename NodeTy::iterator>::type;
49 using NodePtr = NodeTy*;
53 using reference = NodeTy&;
54 using value_type = NodeTy;
131 template <typename NodeTy>
133 static_assert(!std::is_pointer<NodeTy>::value &&
134 !std::is_reference<NodeTy>::value,
138 typename std::conditional<std::is_const<NodeTy>::value,
139 typename NodeTy::const_iterator,
140 typename NodeTy::iterator>::type;
143 using NodePtr = NodeTy*;
147 using reference = NodeTy&;
148 using value_type = NodeTy;