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

operator.is_not(a, b) Return a is not b. Tests object identity.

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

operator.or_(a, b) operator.__or__(a, b) Return the bitwise or of a and b.

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

operator.index(a) operator.__index__(a) Return a converted to an integer. Equivalent to a.__index__()

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

operator.imod(a, b) operator.__imod__(a, b) a = imod(a, b) is equivalent to a %= b.

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

operator.__ilshift__(a, b) a = ilshift(a, b) is equivalent to a <<= b.

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

operator.pos(obj) operator.__pos__(obj) Return obj positive (+obj).

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

@functools.total_ordering Given a class defining one or more rich comparison ordering methods, this class decorator supplies

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

operator.__iadd__(a, b) a = iadd(a, b) is equivalent to a += b.

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

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

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

itertools.combinations_with_replacement(iterable, r) Return r length subsequences of elements from the input iterable

2025-01-10 15:47:30