-
Notifications
You must be signed in to change notification settings - Fork 72
remove
docs and deprecating df - cols
#1022
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
Conversation
# Conflicts: # core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/remove.kt
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just a tiny thing, otherwise, it's another operation kdoc'ed :D
*/ | ||
internal interface Remove | ||
|
||
/** {@set [SelectingColumns.OperationArg] [remove][remove]} */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OperationArg does not exist. OPERATION does
@@ -79,6 +79,9 @@ internal const val IS_URL_IMPORT = "org.jetbrains.kotlinx.dataframe.io.isUrl" | |||
|
|||
private const val MESSAGE_0_17 = "Will be ERROR in 0.17." | |||
|
|||
internal const val MINUS = "This minus overload will be removed in favor of `remove`. $MESSAGE_0_17" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
to speed up the cleanup, let's actually make this ERROR in 0.16 already :)
* | ||
* See [Selecting Columns][Select.SelectSelectingOptions]. | ||
* | ||
* For more information: {@include [DocumentationUrls.Remove]} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We will probably move this to a @see
tag later, but for now it looks good
remove
#819