@functools.singledispatch(default) Transforms a function into a single-dispatch
operator.iand(a, b) operator.__iand__(a, b) a = iand(a, b) is equivalent to a &= b
operator.__setitem__(a, b, c) Set the value of a at index b to c.
operator.__floordiv__(a, b) Return a // b.
operator.__not__(obj) Return the outcome of not obj. (Note that there is no __not__() method
class functools.partialmethod(func, *args, **keywords) Return a new partialmethod descriptor which behaves like
functools.partial(func, *args, **keywords) Return a new partial object which when called will behave like func
operator.__ne__(a, b) operator.__ge__(a, b) operator.__gt__(a, b) Perform
operator.lshift(a, b) operator.__lshift__(a, b) Return a shifted left by b.
operator.__concat__(a, b) Return a + b for a and b sequences.
Page 6 of 13