public class Curler extends Object
| Constructor and Description |
|---|
Curler() |
| Modifier and Type | Method and Description |
|---|---|
static Object |
curl(boolean[] src,
int[] dims)
Curl a flattened column-major input array of boolean up into
a multi-dimensional row-major array.
|
static Object |
curl(byte[] src,
int[] dims)
Curl a flattened column-major input array of byte up into
a multi-dimensional row-major array.
|
static Object |
curl(char[] src,
int[] dims)
Curl a flattened column-major input array of char up into
a multi-dimensional row-major array.
|
static Object |
curl(double[] src,
int[] dims)
Curl a flattened column-major input array of double up into
a multi-dimensional row-major array.
|
static Object |
curl(float[] src,
int[] dims)
Curl a flattened column-major input array of float up into
a multi-dimensional row-major array.
|
static Object |
curl(int[] src,
int[] dims)
Curl a flattened column-major input array of int up into
a multi-dimensional row-major array.
|
static Object |
curl(long[] src,
int[] dims)
Curl a flattened column-major input array of long up into
a multi-dimensional row-major array.
|
static Object |
curl(Object[] src,
int[] dims)
Curl a flattened column-major input array of any type into
a multi-dimensional row-major array.
|
static void |
curl(Object dst,
boolean[] src,
int start,
List<Integer> stride,
List<Integer> len,
int depth)
Curl a one-dimensional column-major array of boolean up into a multi
dimensional row-major array.
|
static void |
curl(Object dst,
byte[] src,
int start,
List<Integer> stride,
List<Integer> len,
int depth)
Curl a one-dimensional column-major array of byte up into a multi
dimensional row-major array.
|
static void |
curl(Object dst,
char[] src,
int start,
List<Integer> stride,
List<Integer> len,
int depth)
Curl a one-dimensional column-major array of char up into a multi
dimensional row-major array.
|
static void |
curl(Object dst,
double[] src,
int start,
List<Integer> stride,
List<Integer> len,
int depth)
Curl a one-dimensional column-major array of double up into a multi
dimensional row-major array.
|
static void |
curl(Object dst,
float[] src,
int start,
List<Integer> stride,
List<Integer> len,
int depth)
Curl a one-dimensional column-major array of float up into a multi
dimensional row-major array.
|
static void |
curl(Object dst,
int[] src,
int start,
List<Integer> stride,
List<Integer> len,
int depth)
Curl a one-dimensional column-major array of int up into a multi
dimensional row-major array.
|
static void |
curl(Object dst,
long[] src,
int start,
List<Integer> stride,
List<Integer> len,
int depth)
Curl a one-dimensional column-major array of long up into a multi
dimensional row-major array.
|
static void |
curl(Object dst,
Object[] src,
int start,
List<Integer> stride,
List<Integer> len,
int depth)
Curl a one-dimensional column-major array of generic type T up into a multi
dimensional row-major array.
|
static void |
curl(Object dst,
short[] src,
int start,
List<Integer> stride,
List<Integer> len,
int depth)
Curl a one-dimensional column-major array of short up into a multi
dimensional row-major array.
|
static void |
curl(Object dst,
String[] src,
int start,
List<Integer> stride,
List<Integer> len,
int depth)
Curl a one-dimensional column-major array of java.lang.String up into a multi
dimensional row-major array.
|
static Object |
curl(short[] src,
int[] dims)
Curl a flattened column-major input array of short up into
a multi-dimensional row-major array.
|
static Object |
curl(String[] src,
int[] dims)
Curl a flattened column-major input array of java.lang.String up into
a multi-dimensional row-major array.
|
public static Object curl(Object[] src, int[] dims)
src - One dimensional array to be curleddims - The desired dimensions for the curled arraypublic static void curl(Object dst, Object[] src, int start, List<Integer> stride, List<Integer> len, int depth)
public static Object curl(boolean[] src, int[] dims)
src - One dimensional array to be curleddims - The desired dimensions for the curled arraypublic static void curl(Object dst, boolean[] src, int start, List<Integer> stride, List<Integer> len, int depth)
public static Object curl(String[] src, int[] dims)
src - One dimensional array to be curleddims - The desired dimensions for the curled arraypublic static void curl(Object dst, String[] src, int start, List<Integer> stride, List<Integer> len, int depth)
public static Object curl(int[] src, int[] dims)
src - One dimensional array to be curleddims - The desired dimensions for the curled arraypublic static void curl(Object dst, int[] src, int start, List<Integer> stride, List<Integer> len, int depth)
public static Object curl(double[] src, int[] dims)
src - One dimensional array to be curleddims - The desired dimensions for the curled arraypublic static void curl(Object dst, double[] src, int start, List<Integer> stride, List<Integer> len, int depth)
public static Object curl(short[] src, int[] dims)
src - One dimensional array to be curleddims - The desired dimensions for the curled arraypublic static void curl(Object dst, short[] src, int start, List<Integer> stride, List<Integer> len, int depth)
public static Object curl(byte[] src, int[] dims)
src - One dimensional array to be curleddims - The desired dimensions for the curled arraypublic static void curl(Object dst, byte[] src, int start, List<Integer> stride, List<Integer> len, int depth)
public static Object curl(float[] src, int[] dims)
src - One dimensional array to be curleddims - The desired dimensions for the curled arraypublic static void curl(Object dst, float[] src, int start, List<Integer> stride, List<Integer> len, int depth)
public static Object curl(char[] src, int[] dims)
src - One dimensional array to be curleddims - The desired dimensions for the curled arraypublic static void curl(Object dst, char[] src, int start, List<Integer> stride, List<Integer> len, int depth)
public static Object curl(long[] src, int[] dims)
src - One dimensional array to be curleddims - The desired dimensions for the curled arrayCopyright © 2015–2024. All rights reserved.