Home | History | Annotate | Download | only in compiler

Lines Matching refs:Rest

23     Cons(A top, Cons* rest)
24 : top(std::move(top)), rest(rest), size(1 + (rest ? rest->size : 0)) {}
26 Cons* const rest;
53 FunctionalList Rest() const {
61 elements_ = elements_->rest;
72 hint.Rest() == *this) {
99 current_ = current_->rest;