inline op_iterator op_end() { return OperandList+NumOperands; }
inline const_op_iterator op_end() const { return OperandList+NumOperands; }
+ /// Convenience iterator for directly iterating over the Values in the
+ /// OperandList
class value_op_iterator : public std::iterator<std::forward_iterator_tag,
Value*> {
op_iterator OI;
return !operator==(x);
}
- // Iterator traversal: forward iteration only
+ /// Iterator traversal: forward iteration only
value_op_iterator &operator++() { // Preincrement
++OI;
return *this;
value_op_iterator tmp = *this; ++*this; return tmp;
}
- // Retrieve a pointer to the current User.
+ /// Retrieve a pointer to the current Value.
Value *operator*() const {
return *OI;
}