Skip to content

Commit bafff84

Browse files
committed
Add out modifier for type argument of ColumnAccessor
1 parent c16d103 commit bafff84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/org/jetbrains/kotlinx/dataframe/columns/ColumnAccessor.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import kotlin.reflect.KProperty
1717
*
1818
* @param T Expected [type][DataColumn.type] of values in the column
1919
*/
20-
public interface ColumnAccessor<T> : ColumnReference<T> {
20+
public interface ColumnAccessor<out T> : ColumnReference<T> {
2121

2222
public override operator fun getValue(thisRef: Any?, property: KProperty<*>): ColumnAccessor<T> = this
2323

0 commit comments

Comments
 (0)