Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for LittleEndianByteArray (0.06 sec)

  1. guava/src/com/google/common/hash/LittleEndianByteArray.java

    import org.jspecify.annotations.Nullable;
    import sun.misc.Unsafe;
    
    /**
     * Utility functions for loading and storing values from a byte array.
     *
     * @author Kevin Damm
     * @author Kyle Maddison
     */
    final class LittleEndianByteArray {
    
      /**
       * The instance that actually does the work; delegates to VarHandle, Unsafe, or a Java-8
       * compatible pure-Java fallback.
       */
      private static final LittleEndianBytes byteArray = makeGetter();
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 12 03:49:18 UTC 2025
    - 12.3K bytes
    - Viewed (0)
Back to top