Interface BigSwapper

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface BigSwapper
An object that can swap elements whose positions are specified by longs.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    swap(long a, long b)
    Swaps the data at the given positions.
  • Method Details

    • swap

      void swap(long a, long b)
      Swaps the data at the given positions.
      Parameters:
      a - the first position to swap.
      b - the second position to swap.