MathNya / umya-spreadsheet

A pure rust library for reading and writing spreadsheet files
MIT License
240 stars 41 forks source link

[Update] deprecate `*_by_column_and_row*` methods #93

Closed john-dc252 closed 1 year ago

john-dc252 commented 1 year ago

Changes:

The changes listed above will allow having just one method/function for things that need an address string or column and row index. This means methods like get_cell do not need a separate get_cell_by_column_and_row anymore. e.g.

// both these calls are now valid
worksheet.get_cell("C2");
worksheet.get_cell((3, 2));
MathNya commented 1 year ago

Wow, thanks for the cool suggestion. I will merge them.