operator.
  • References/Python/Python/Functional Programming

operator.__contains__(a, b) Return the outcome of the test b in a. Note the reversed operands.

2025-01-10 15:47:30
operator.
  • References/Python/Python/Functional Programming

operator.__imatmul__(a, b) a = imatmul(a, b) is equivalent to a @= b.

2025-01-10 15:47:30
operator.
  • References/Python/Python/Functional Programming

operator.__isub__(a, b) a = isub(a, b) is equivalent to a -= b.

2025-01-10 15:47:30
operator.
  • References/Python/Python/Functional Programming

operator.__lshift__(a, b) Return a shifted left by b.

2025-01-10 15:47:30
operator.itruediv()
  • References/Python/Python/Functional Programming

operator.itruediv(a, b) operator.__itruediv__(a, b) a = itruediv(a, b) is equivalent to a /=

2025-01-10 15:47:30
operator.
  • References/Python/Python/Functional Programming

operator.__inv__(obj) operator.__invert__(obj) Return the bitwise inverse of the number obj. This is equivalent

2025-01-10 15:47:30
operator.
  • References/Python/Python/Functional Programming

operator.__rshift__(a, b) Return a shifted right by b.

2025-01-10 15:47:30
functools.partial.args
  • References/Python/Python/Functional Programming

partial.args The leftmost positional arguments that will be prepended to the positional arguments provided to a partial

2025-01-10 15:47:30
functools.cmp_to_key()
  • References/Python/Python/Functional Programming

functools.cmp_to_key(func) Transform an old-style comparison function to a key function

2025-01-10 15:47:30
itertools.dropwhile()
  • References/Python/Python/Functional Programming

itertools.dropwhile(predicate, iterable) Make an iterator that drops elements from the iterable as long as the predicate is

2025-01-10 15:47:30