Move iterators into separate package
Also reduce API exposure and use standard library more - and fix bugs I previously introduces in mongo.
This commit is contained in:
parent
88be6bee37
commit
1768e593a8
62 changed files with 3240 additions and 3130 deletions
|
|
@ -58,7 +58,7 @@ func Parse(str string) *graph.Triple {
|
|||
}
|
||||
str = skipWhitespace(remainder)
|
||||
if str != "" && str[0] == '.' {
|
||||
return graph.MakeTriple(*sub, *pred, *obj, prov)
|
||||
return &graph.Triple{*sub, *pred, *obj, prov}
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue