src/org/jetbrains/r/visualization/inlays/dataframe/columns/DoubleColumn.kt [23:34]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - override fun getComparator(descendant: Boolean): Comparator { return if (descendant) Comparator { i1, i2 -> this[i2].compareTo(this[i1]) } else Comparator { i1, i2 -> this[i1].compareTo(this[i2]) } } override val range: ClosedRange get() { if(lazyRange != null) { return lazyRange!! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - src/org/jetbrains/r/visualization/inlays/dataframe/columns/IntColumn.kt [23:33]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - override fun getComparator(descendant: Boolean): Comparator { return if (descendant) Comparator { i1, i2 -> this[i2].compareTo(this[i1]) } else Comparator { i1, i2 -> this[i1].compareTo(this[i2]) } } override val range: ClosedRange get() { if(lazyRange != null) { return lazyRange!! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -