All Downloads are FREE. Search and download functionalities are using the official Maven repository.

multiversx.Utils Maven / Gradle / Ivy

package multiversx;

public class Utils {
    public static byte[] toByteArray(int[] input) {
        byte[] result = new byte[input.length];
        for (int i = 0; i < input.length; i++) {
            result[i] = (byte) input[i];
        }
        return result;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy