Package net.algart.arrays
Class JArrays.LongArrayExchanger
java.lang.Object
net.algart.arrays.JArrays.LongArrayExchanger
- All Implemented Interfaces:
ArrayExchanger
,ArrayExchanger32
- Enclosing class:
JArrays
Simple implementation of
ArrayExchanger
, exchanging elements of long[] array.-
Constructor Summary
ConstructorDescriptionLongArrayExchanger
(long[] array) Creates new exchanger, exchanging elements of the passed array. -
Method Summary
Modifier and TypeMethodDescriptionvoid
swap
(int first, int second) Exchanges the elements array[(int)first] and array[(int)second], where array is the argument of the constructor.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface net.algart.arrays.ArrayExchanger32
swap
-
Constructor Details
-
LongArrayExchanger
public LongArrayExchanger(long[] array) Creates new exchanger, exchanging elements of the passed array.- Parameters:
array
- some Java array.- Throws:
NullPointerException
- if the argument is null.
-
-
Method Details
-
swap
public void swap(int first, int second) Exchanges the elements array[(int)first] and array[(int)second], where array is the argument of the constructor.- Specified by:
swap
in interfaceArrayExchanger32
- Parameters:
first
- index of the first exchanged element.second
- index of the second exchanged element.
-