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

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

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

operator.ipow(a, b) operator.__ipow__(a, b) a = ipow(a, b) is equivalent to a **= b.

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

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

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

operator.eq(a, b) operator.ne(a, b) operator.ge(a, b) operator

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

itertools.chain(*iterables) Make an iterator that returns elements from the first iterable until it is exhausted, then proceeds

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

operator.xor(a, b) operator.__xor__(a, b) Return the bitwise exclusive or of a and b.

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

itertools.tee(iterable, n=2) Return n independent iterators from a single iterable. Roughly equivalent to:

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

itertools.permutations(iterable, r=None) Return successive r length permutations of elements in the iterable

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

itertools.compress(data, selectors) Make an iterator that filters elements from data returning only those that have

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

operator.add(a, b) operator.__add__(a, b) Return a + b, for a and b numbers.

2025-01-10 15:47:30