MathNya / umya-spreadsheet

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

[Update] make `CellValue` internal #100

Open john-dc252 opened 1 year ago

john-dc252 commented 1 year ago

Changes:

john-dc252 commented 1 year ago

Since mutators and accessors are already available through Cell, would it not be better to exclude the CellValue type from the public API?

MathNya commented 1 year ago

john-dc252

Since mutators and accessors are already available through Cell, would it not be better to exclude the CellValue type from the public API?

Sorry for the late reply. The CellValue API, I think it would be useful to have. Like when preparing a CellValue and applying it to multiple Cells. If this is the case, I feel that Cell's set_value_from_string etc. is unnecessary. As for the system, I want to keep it as simple as possible. Hmmm, I will consider this a little.