tfussell / xlnt

:bar_chart: Cross-platform user-friendly xlsx library for C++11+
Other
1.45k stars 406 forks source link

class workbook is missing a const version of named_range() #664

Open sbj42 opened 1 year ago

sbj42 commented 1 year ago

workbook has

    class range named_range(const std::string &name);

but does not have:

    const class range named_range(const std::string &name) const;

worksheet already has both, but it would be nice to have a const version in workbook.