Skip to content

Commit 1e5485c

Browse files
Fix README.md
1 parent 7a029f6 commit 1e5485c

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

README.md

+10
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,16 @@ Rusk::Sheet#each_column
9898
end
9999
```
100100

101+
If Rusk::Sheet#each, each_row, each_column call without block, return Enumerator instance
102+
103+
```ruby
104+
sheet.each_row # return Enumerator
105+
106+
# use method chain
107+
sheet.each_row.with_index |rows, index|
108+
end
109+
```
110+
101111
#### cell's value ####
102112

103113
Rusk::Cell#value gets the value of the cell according to the format.

0 commit comments

Comments
 (0)