Lines Matching full:curr
77 curr = root[1] # start at the first node78 while curr is not root:79 yield curr[2] # yield the curr[KEY]80 curr = curr[1] # move to next node86 curr = root[0] # start at the last node87 while curr is not root:88 yield curr[2] # yield the curr[KEY]89 curr = curr[0] # move to previous node