Class ULongRawIndexer

All Implemented Interfaces:
AutoCloseable

public class ULongRawIndexer extends ULongIndexer
An indexer for a LongPointer using the Raw instance, treated as unsigned.
Author:
Samuel Audet
  • Field Details

    • RAW

      protected static final org.bytedeco.javacpp.indexer.Raw RAW
      The instance for the raw memory interface.
    • pointer

      protected LongPointer pointer
      The backing pointer.
  • Constructor Details

    • ULongRawIndexer

      public ULongRawIndexer(LongPointer pointer)
      Calls ULongRawIndexer(pointer, Index.create(pointer.limit() - pointer.position())).
    • ULongRawIndexer

      public ULongRawIndexer(LongPointer pointer, long... sizes)
      Calls ULongRawIndexer(pointer, Index.create(sizes)).
    • ULongRawIndexer

      public ULongRawIndexer(LongPointer pointer, long[] sizes, long[] strides)
      Calls ULongRawIndexer(pointer, Index.create(sizes, strides)).
    • ULongRawIndexer

      public ULongRawIndexer(LongPointer pointer, Index index)
      Constructor to set the pointer and Indexer.index.
  • Method Details