This commit is contained in:
Barak Michener 2014-08-06 15:51:31 -04:00
parent 840c341274
commit 4d9dd42dd8

View file

@ -37,8 +37,8 @@ import (
// pointers to structs, or merely triples, or whatever works best for the
// backing store.
//
// These must be comparable, ie, not arrays or maps, as they may be used as keys
// for maps.
// These must be comparable, or implement a `Hashable() interface{}` function
// so that they may be stored in maps.
type Value interface{}
type TripleStore interface {