Class ULongArrayIndexer

All Implemented Interfaces:
AutoCloseable

public class ULongArrayIndexer extends ULongIndexer
An indexer for a long[] array, treated as unsigned.
  • Field Details

    • array

      protected long[] array
      The backing array.
  • Constructor Details

    • ULongArrayIndexer

      public ULongArrayIndexer(long[] array)
      Calls ULongArrayIndexer(array, Index.create(array.length)).
    • ULongArrayIndexer

      public ULongArrayIndexer(long[] array, long... sizes)
      Calls ULongArrayIndexer(array, Index.create(sizes)).
    • ULongArrayIndexer

      public ULongArrayIndexer(long[] array, long[] sizes, long[] strides)
      Calls ULongArrayIndexer(array, Index.create(sizes, strides)).
    • ULongArrayIndexer

      public ULongArrayIndexer(long[] array, Index index)
      Constructor to set the array and Indexer.index.
  • Method Details