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

ai.djl.mxnet.jna.NativeSize Maven / Gradle / Ivy

The newest version!
package ai.djl.mxnet.jna;

import com.sun.jna.IntegerType;
import com.sun.jna.Native;

public class NativeSize extends IntegerType {

    private static final long serialVersionUID = 1L;

    public static final int SIZE = Native.SIZE_T_SIZE;

    public NativeSize() {
        this(0);
    }

    public NativeSize(long value) {
        super(SIZE, value);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy