We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
out
ColumnAccessor
1 parent c16d103 commit bafff84Copy full SHA for bafff84
src/main/kotlin/org/jetbrains/kotlinx/dataframe/columns/ColumnAccessor.kt
@@ -17,7 +17,7 @@ import kotlin.reflect.KProperty
17
*
18
* @param T Expected [type][DataColumn.type] of values in the column
19
*/
20
-public interface ColumnAccessor<T> : ColumnReference<T> {
+public interface ColumnAccessor<out T> : ColumnReference<T> {
21
22
public override operator fun getValue(thisRef: Any?, property: KProperty<*>): ColumnAccessor<T> = this
23
0 commit comments