aryEq

inline fun <T> aryEq(value: Array<T>): Array<T>

Any array argument that is equal to the given array, i.e. it has to have the same type, length, and each element has to be equal.


short array argument that is equal to the given array, i.e. it has to have the same length, and each element has to be equal.


long array argument that is equal to the given array, i.e. it has to have the same length, and each element has to be equal.


fun aryEq(value: IntArray): IntArray

int array argument that is equal to the given array, i.e. it has to have the same length, and each element has to be equal.


float array argument that is equal to the given array, i.e. it has to have the same length, and each element has to be equal.


double array argument that is equal to the given array, i.e. it has to have the same length, and each element has to be equal.


char array argument that is equal to the given array, i.e. it has to have the same length, and each element has to be equal.


byte array argument that is equal to the given array, i.e. it has to have the same length, and each element has to be equal.


boolean array argument that is equal to the given array, i.e. it has to have the same length, and each element has to be equal.