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.
1 parent 28e515d commit 901a806Copy full SHA for 901a806
core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/impl/api/toDataFrame.kt
@@ -61,7 +61,14 @@ private val valueTypes = setOf(
61
)
62
63
/**
64
- * Check
+ * Determines whether a class can be unfolded into its properties.
65
+ *
66
+ * A class is considered **unfoldable** if it has at least one public property
67
+ * or getter-like function. This excludes:
68
+ * - **Value types** such as primitives, enums, and date-time types.
69
+ * - **Classes without properties**, including empty or marker classes.
70
71
+ * @return `true` if the class has unfoldable properties, `false` otherwise.
72
*/
73
@PublishedApi
74
internal val KClass<*>.canBeUnfolded: Boolean
0 commit comments