Skip to content

Commit 7449339

Browse files
committed
Doc improve tip about speed
1 parent f57f09e commit 7449339

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,8 @@ try {
129129

130130
## Tips
131131

132-
* ℹ️ Iterators (`rowsIterator()`, `cellsIterator()`) and navigation methods (`getNextCell()`, etc.) are faster than accessing multiple cells by name (`getCellOrNull()`) or multiple rows by number (`getRow()`).
132+
* ℹ️ Iterators (`$x->rowsIterator()`, `$row->cellsIterator()`) and navigation methods (`$cell->getNextCell()`, etc.) are much faster than accessing
133+
multiple rows or cells by direct access (`$x->readString($worksheetId, 'A1')`, etc.), by name (`$row->getCellOrNull('A')`), or by number (`$x->getRow($worksheetId, 1)`).
133134

134135
## Requirements
135136

0 commit comments

Comments
 (0)