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.
Any
Nothing
dataFrameOf("a" to emptyList())["a"].type should be of Nothing type, just like emptyList() returns.
dataFrameOf("a" to emptyList())["a"].type
emptyList()
similarly dataFrameOf("a" to listOf(null))["a"].type should give Nothing?.
dataFrameOf("a" to listOf(null))["a"].type
Nothing?