Lines Matching refs:equivalent
24 failure. This is equivalent to the Python expression ``len(o)``.
30 This is the equivalent of the Python expression ``o1 + o2``.
36 failure. This is the equivalent of the Python expression ``o * count``.
42 The operation is done *in-place* when *o1* supports it. This is the equivalent
50 equivalent of the Python expression ``o *= count``.
55 Return the *i*\ th element of *o*, or *NULL* on failure. This is the equivalent of
62 failure. This is the equivalent of the Python expression ``o[i1:i2]``.
69 is the equivalent of the Python statement ``o[i] = v``. This function *does
79 equivalent of the Python statement ``del o[i]``.
85 *i2*. This is the equivalent of the Python statement ``o[i1:i2] = v``.
91 failure. This is the equivalent of the Python statement ``del o[i1:i2]``.
98 equivalent to the Python expression ``o.count(value)``.
105 equivalent to the Python expression ``value in o``.
111 ``-1``. This is equivalent to the Python expression ``o.index(value)``.
118 equivalent to the Python expression ``list(o)``.
128 equivalent to the Python expression ``tuple(o)``.