-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Open
Labels
enhancementNew feature or requestNew feature or request
Description
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
iterateFunc := func(index int, cell string) {
}
rows.IterateColumns(iterateFunc)
Additional context
No response
Validations
- Check that there isn't already an issue that requests the same feature to avoid creating a duplicate.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request