Skip to content

Added special check for function types in debug mode #863

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ import org.jetbrains.kotlinx.dataframe.kind
import kotlin.reflect.KClass
import kotlin.reflect.KType
import kotlin.reflect.full.isSubclassOf
import kotlin.reflect.full.isSubtypeOf
import kotlin.reflect.typeOf

internal abstract class DataColumnImpl<T>(
protected val values: List<T>,
Expand All @@ -22,6 +24,9 @@ internal abstract class DataColumnImpl<T>(
when {
this == null -> type.isMarkedNullable

// special case since functions are often stored as a $$Lambda$... class, the subClassOf check would fail
this is Function<*> && type.isSubtypeOf(typeOf<Function<*>?>()) -> true

this.isPrimitiveArray ->
type.isPrimitiveArray &&
this!!::class.qualifiedName == type.classifier?.let { (it as KClass<*>).qualifiedName }
Expand Down
Loading