-
Notifications
You must be signed in to change notification settings - Fork 106
adding a cell view #25
Copy link
Copy link
Open
Description
Rather than building a full string, returning a string view may be more efficient in some cases (suppose one wants to drop a column).
Something like:
class Cell { [...]
std::string_view read_view() const {
return std::string_view(buffer_ + start_, end_ - start_);
}
[...]
};
Even for conversion, it's probably enough.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels