Class LargeMemoryUtil

java.lang.Object
org.apache.arrow.memory.util.LargeMemoryUtil

public final class LargeMemoryUtil extends Object
Contains utilities for dealing with a 64-bit address base.
  • Method Details

    • checkedCastToInt

      public static int checkedCastToInt(long length)
      Casts length to an int, but raises an exception the value is outside the range of an int.
    • capAtMaxInt

      public static int capAtMaxInt(long length)
      Returns a min(Integer.MAX_VALUE, length).