-
Notifications
You must be signed in to change notification settings - Fork 65
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
Are there utility APIs to know if a table is empty, number of rows/columns in it etc? #26
Comments
Hi! Added functions |
thanks for |
Hard to say. I wouldn't hurry adding them. Don't want to add functions to API if it is not clear how they would be used. At first it seems easy. But maybe there can be some problems since it is possible to expand cells for several columns. |
I agree that columns can be be broken/merged, but I don't think same thing can be done with rows, so a |
Added function to get number of rows in the table. Resolving the issue. |
I don't see any APIs like this. I can know if the table is empty by checking if
to_string
returns empty, but an API will help!The text was updated successfully, but these errors were encountered: