Home | History | Annotate | Download | only in src

Lines Matching defs:out

669   _Self operator+(size_t a) { _Self out = *this; out._i += a; return out; }
670 _Self operator-(size_t a) { assert(_i >= a); _Self out = *this; out._i -= a; return out; }