Package org.ojalgo.array.operation
Class Exchange
java.lang.Object
org.ojalgo.array.operation.Exchange
- All Implemented Interfaces:
ArrayOperation
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic void
exchange
(byte[] data, int firstA, int firstB, int step, int count) static void
exchange
(double[] data, int firstA, int firstB, int step, int count) static void
exchange
(float[] data, int firstA, int firstB, int step, int count) static void
exchange
(int[] data, int firstA, int firstB, int step, int count) static void
exchange
(long[] data, int firstA, int firstB, int step, int count) static void
exchange
(short[] data, int firstA, int firstB, int step, int count) static <N extends Comparable<N>>
voidexchange
(N[] data, int firstA, int firstB, int step, int count) static <N extends Comparable<N>>
voidexchange
(BasicArray<N> data, long firstA, long firstB, long step, long count)
-
Field Details
-
THRESHOLD
public static int THRESHOLD
-
-
Constructor Details
-
Exchange
public Exchange()
-
-
Method Details
-
exchange
public static <N extends Comparable<N>> void exchange(BasicArray<N> data, long firstA, long firstB, long step, long count) -
exchange
public static void exchange(byte[] data, int firstA, int firstB, int step, int count) -
exchange
public static void exchange(double[] data, int firstA, int firstB, int step, int count) -
exchange
public static void exchange(float[] data, int firstA, int firstB, int step, int count) -
exchange
public static void exchange(int[] data, int firstA, int firstB, int step, int count) -
exchange
public static void exchange(long[] data, int firstA, int firstB, int step, int count) -
exchange
public static <N extends Comparable<N>> void exchange(N[] data, int firstA, int firstB, int step, int count) -
exchange
public static void exchange(short[] data, int firstA, int firstB, int step, int count)
-