Home | History | Annotate | Download | only in ruby

Lines Matching refs:curr

322     ConstIterator_T(const_iter curr, VALUE seq = Qnil)
323 : ConstIterator(seq), current(curr)
412 Iterator_T(nonconst_iter curr, VALUE seq = Qnil)
413 : Iterator(seq), current(curr)
518 ConstIteratorOpen_T(const_iter curr, VALUE seq = Qnil)
519 : ConstIterator_T<OutConstIterator>(curr, seq)
552 IteratorOpen_T(nonconst_iter curr, VALUE seq = Qnil)
553 : Iterator_T<InOutIterator>(curr, seq)
600 ConstIteratorClosed_T(const_iter curr, const_iter first,
602 : ConstIterator_T<OutConstIterator>(curr, seq), begin(first), end(last)
653 IteratorClosed_T(nonconst_iter curr, nonconst_iter first,
655 : Iterator_T<InOutIterator>(curr, seq), begin(first), end(last)
701 IteratorOpen_T(nonconst_iter curr, VALUE seq = Qnil)
702 : Iterator_T<InOutIterator>(curr, seq)
751 IteratorClosed_T(nonconst_iter curr, nonconst_iter first,
753 : Iterator_T<InOutIterator>(curr, seq), begin(first), end(last)