iteration_utilities.
rpow
Returns op2 ** op1.
op2 ** op1
The values for the operation.
Examples
Equivalent to lambda x, y: y ** x:
lambda x, y: y ** x
>>> from iteration_utilities import rpow >>> rpow(3, 2) 8
roundrobin
rsub