Loading request...
Add a `Rows.IterateColumns()` function to efficiently iterate over cells in a row without creating a large string array.
### Description Rows.Columns return []string, the performance is not good, because user usuall want to iterate []string the difference is: user want iterate each string, not want []string so the []string can be removed, because it cost performance, espacially big []string maybe could support Rows.IterateColumns(), user use it like below ```go iterateFunc := func(index int, cell string) { } rows.IterateColumns(iterateFunc) ``` ### Additional context _No response_ ### Validations - [x] Check that there isn't already an issue that requests the same feature to avoid creating a duplicate.