Class IColIndex.SliceResult

java.lang.Object
org.apache.sysds.runtime.compress.colgroup.indexes.IColIndex.SliceResult
Enclosing interface:
IColIndex

public static class IColIndex.SliceResult extends Object
A Class for slice results containing indexes for the slicing of dictionaries, and the resulting column index
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final int
    End index (not inclusive) to slice inside the dictionary
    final int
    Start index to slice inside the dictionary
    final IColIndex
    The already modified column index to return on slices
  • Method Summary

    Modifier and Type
    Method
    Description
     

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

    • idStart

      public final int idStart
      Start index to slice inside the dictionary
    • idEnd

      public final int idEnd
      End index (not inclusive) to slice inside the dictionary
    • ret

      public final IColIndex ret
      The already modified column index to return on slices
  • Method Details