Lines Matching defs:it
5 This library is free software; you can redistribute it and/or modify it
19 This library is distributed in the hope that it will be useful,
34 const T *to_ptr(typename std::vector<T>::const_iterator it)
36 return &*it;
40 T *to_ptr(typename std::vector<T>::iterator it)
42 return &*it;
99 const T *operator()(const_iterator it) const
101 return to_ptr<T>(it);
104 T *operator()(iterator it) const
106 return to_ptr<T>(it);