Interface RangeCopyable<M>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void copyRangeTo​(long pSourceOffset, M pTo, long pDestinationOffset, long pLengthToCopy)
      Copies range (offset_src,length) from this memory object to the range (offset_src,length) of a generic destination.
    • Method Detail

      • copyRangeTo

        void copyRangeTo​(long pSourceOffset,
                         M pTo,
                         long pDestinationOffset,
                         long pLengthToCopy)
        Copies range (offset_src,length) from this memory object to the range (offset_src,length) of a generic destination.
        Parameters:
        pSourceOffset - source offset
        pTo - destination
        pDestinationOffset - destination offset
        pLengthToCopy - length to copy in bytes.