itertools.starmap(function, iterable) Make an iterator that computes the function using arguments obtained from the iterable
operator.lshift(a, b) operator.__lshift__(a, b) Return a shifted left by b.
@functools.singledispatch(default) Transforms a function into a single-dispatch
functools.reduce(function, iterable[, initializer]) Apply function of two arguments cumulatively to the items of sequence
class functools.partialmethod(func, *args, **keywords) Return a new partialmethod descriptor which behaves like
itertools.accumulate(iterable[, func]) Make an iterator that returns accumulated sums, or accumulated results of other binary
operator.mul(a, b) operator.__mul__(a, b) Return a * b, for a and b numbers.
operator.sub(a, b) operator.__sub__(a, b) Return a - b.
operator.ge(a, b) operator.gt(a, b) operator.__lt__(a, b) operator
itertools.combinations(iterable, r) Return r length subsequences of elements from the input iterable.
Page 5 of 13