Home | History | Annotate | Download | only in src

Lines Matching defs:out

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