You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (valueCol.kind() !=org.jetbrains.kotlinx.dataframe.columns.ColumnKind.Value) { // check that value in this column is not null only when other values are null
129
+
if (valueCol.kind() !=ColumnKind.Value) { // check that value in this column is not null only when other values are null
130
130
null
131
131
} else {
132
132
// check that value in this column is not null only when other values are null
@@ -156,7 +156,7 @@ internal fun AnyFrame.extractArrayColumn(): DataColumn<*>? {
if (valueCol.kind() !=org.jetbrains.kotlinx.dataframe.columns.ColumnKind.Value) { // check that value in this column is not null only when other values are null
129
+
if (valueCol.kind() !=ColumnKind.Value) { // check that value in this column is not null only when other values are null
130
130
null
131
131
} else {
132
132
// check that value in this column is not null only when other values are null
@@ -156,7 +156,7 @@ internal fun AnyFrame.extractArrayColumn(): DataColumn<*>? {
0 commit comments