Package it.unimi.dsi.fastutil
Interface Swapper
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
An object that can swap elements whose position is specified by integers.
- See Also:
-
Method Summary
-
Method Details
-
swap
void swap(int a, int b) Swaps the data at the given positions.- Parameters:
a
- the first position to swap.b
- the second position to swap.
-