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

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

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

partial.keywords The keyword arguments that will be supplied when the partial object is called.

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

operator.__concat__(a, b) Return a + b for a and b sequences.

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

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

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

operator.sub(a, b) operator.__sub__(a, b) Return a - b.

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

itertools.filterfalse(predicate, iterable) Make an iterator that filters elements from iterable returning only those for which

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

itertools.starmap(function, iterable) Make an iterator that computes the function using arguments obtained from the iterable

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

operator.__ixor__(a, b) a = ixor(a, b) is equivalent to a ^= b.

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

functools.reduce(function, iterable[, initializer]) Apply function of two arguments cumulatively to the items of sequence

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

operator.ge(a, b) operator.gt(a, b) operator.__lt__(a, b) operator

2025-01-10 15:47:30