Lines Matching refs:insert
7 If x is already in a, insert it to the right of the rightmost x.
16 a.insert(lo, x)
20 """Return the index where to insert item x in list a, assuming a is sorted.
23 a[i:] have e > x. So if x already appears in the list, a.insert(i, x) will
24 insert just after the rightmost x already there.
56 If x is already in a, insert it to the left of the leftmost x.
66 a.insert(lo, x)
69 """Return the index where to insert item x in list a, assuming a is sorted.
72 a[i:] have e >= x. So if x already appears in the list, a.insert(i, x) will
73 insert just before the leftmost x already there.