-
Notifications
You must be signed in to change notification settings - Fork 105
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
Display list of data classes as table #294
Comments
This gets me close to what I want (although columns are ordered lexicographically rather than as defined in data class constructor) but IMHO should be default behavior:
|
This one will require a compiler plugin since it is not possible to decompose a generic data class (or any other class) without it. It could be done with a serialization plugin and would work for and any class marked as |
@mwisnicki You can achive the same thing using dataframe library. But I don't think it should be a default behaviour |
@altavir in case of data classes (which we can check in RT with |
I will close this issue. I've created the issue in dataframe about this problem: Kotlin/dataframe#32 |
A list of data classes should be rendered as a table like the
DataFrame
rather than simpletoString()
The text was updated successfully, but these errors were encountered: