Skip to content

Commit 21e29a6

Browse files
author
sfomuseumbot
committed
Check return value of yield func
1 parent c109999 commit 21e29a6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

reader.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,9 @@ func (r Reader) Iterate() iter.Seq2[map[string]string, error] {
8686
break
8787
}
8888

89-
yield(dict, nil)
89+
if !yield(dict, nil) {
90+
return
91+
}
9092
}
9193
}
9294
}

0 commit comments

Comments
 (0)