Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
ld
go-ld-prime
Commits
44cd9a8e
Commit
44cd9a8e
authored
Jun 25, 2019
by
Eric Myhre
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'more-doc-fix'
parents
a388f744
8569c0a4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
node.go
node.go
+6
-6
No files found.
node.go
View file @
44cd9a8e
...
...
@@ -108,10 +108,10 @@ type MapIterator interface {
// Done returns false as long as there's at least one more entry to iterate.
// When Done returns true, iteration can stop.
//
//
I
mplement
ers of
iterators for advanced data layouts (e.g. more than
// one chunk of backing data, which is loaded incrementally)
,
if your
//
Note when i
mplement
ing
iterators for advanced data layouts (e.g. more than
// one chunk of backing data, which is loaded incrementally)
:
if your
// implementation does any I/O during the Done method, and it encounters
// an error, it must return '
tru
e', so that the following Next call
// an error, it must return '
fals
e', so that the following Next call
// has an opportunity to return the error.
Done
()
bool
}
...
...
@@ -136,10 +136,10 @@ type ListIterator interface {
// Done returns false as long as there's at least one more entry to iterate.
// When Done returns false, iteration can stop.
//
//
I
mplement
ers of
iterators for advanced data layouts (e.g. more than
// one chunk of backing data, which is loaded incrementally)
,
if your
//
Note when i
mplement
ing
iterators for advanced data layouts (e.g. more than
// one chunk of backing data, which is loaded incrementally)
:
if your
// implementation does any I/O during the Done method, and it encounters
// an error, it must return '
tru
e', so that the following Next call
// an error, it must return '
fals
e', so that the following Next call
// has an opportunity to return the error.
Done
()
bool
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment