public class Arr extends Object
| Constructor and Description |
|---|
Arr() |
| Modifier and Type | Method and Description |
|---|---|
static <T> T[] |
obj(T... ts) |
static boolean[] |
of(boolean... ts) |
static byte[] |
of(byte... ts) |
static char[] |
of(char... ts) |
static double[] |
of(double... ts) |
static float[] |
of(float... ts) |
static int[] |
of(int... ts) |
static long[] |
of(long... ts) |
static short[] |
of(short... ts) |
static boolean[] |
set(boolean[] arr,
int idx,
boolean v) |
static byte[] |
set(byte[] arr,
int idx,
byte v) |
static char[] |
set(char[] arr,
int idx,
char v) |
static double[] |
set(double[] arr,
int idx,
double v) |
static float[] |
set(float[] arr,
int idx,
float v) |
static int[] |
set(int[] arr,
int idx,
int v) |
static long[] |
set(long[] arr,
int idx,
long v) |
static short[] |
set(short[] arr,
int idx,
short v) |
@SafeVarargs @Contract(value="!null->!null") public static <T> T[] obj(T... ts)
public static boolean[] of(boolean... ts)
public static byte[] of(byte... ts)
public static short[] of(short... ts)
public static char[] of(char... ts)
public static int[] of(int... ts)
public static long[] of(long... ts)
public static float[] of(float... ts)
public static double[] of(double... ts)
public static boolean[] set(boolean[] arr,
int idx,
boolean v)
public static byte[] set(byte[] arr,
int idx,
byte v)
public static short[] set(short[] arr,
int idx,
short v)
public static char[] set(char[] arr,
int idx,
char v)
public static int[] set(int[] arr,
int idx,
int v)
public static long[] set(long[] arr,
int idx,
long v)
public static float[] set(float[] arr,
int idx,
float v)
public static double[] set(double[] arr,
int idx,
double v)
Copyright © 2024. All rights reserved.