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

io.daten.faster.PlatformUtil Maven / Gradle / Ivy

The newest version!
package io.daten.faster;

import java.nio.ByteOrder;

public final class PlatformUtil {

    public static final boolean IS_LITTLE_ENDIAN =
        ByteOrder.nativeOrder().equals(ByteOrder.LITTLE_ENDIAN);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy