Skip to content

Commit

Permalink
Doc improve tip about speed
Browse files Browse the repository at this point in the history
  • Loading branch information
Alkarex committed Sep 10, 2024
1 parent f57f09e commit 7449339
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,8 @@ try {

## Tips

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

## Requirements

Expand Down

0 comments on commit 7449339

Please # to comment.