operator.mod()
  • References/Python/Python/Functional Programming

operator.mod(a, b) operator.__mod__(a, b) Return a % b.

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

partial.func A callable object or function. Calls to the partial object will be forwarded to func

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

operator.__iand__(a, b) a = iand(a, b) is equivalent to a &= b.

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

operator.isub(a, b) operator.__isub__(a, b) a = isub(a, b) is equivalent to a -= 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.setitem()
  • References/Python/Python/Functional Programming

operator.setitem(a, b, c) operator.__setitem__(a, b, c) Set the value of a at index b to c

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

operator.ior(a, b) operator.__ior__(a, b) a = ior(a, b) is equivalent to a |= b.

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

operator.delitem(a, b) operator.__delitem__(a, b) Remove the value of a at index 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
functools.update_wrapper()
  • References/Python/Python/Functional Programming

functools.update_wrapper(wrapper, wrapped, assigned=WRAPPER_ASSIGNMENTS, updated=WRAPPER_UPDATES) Update a wrapper

2025-01-10 15:47:30