Vector is an opaque interface to whatever the specific backend implementation will return as object wrapper.
| 3 | // Vector is an opaque interface to whatever the specific backend implementation |
| 4 | // will return as object wrapper. |
| 5 | type Vector interface{} |
| 6 | |
| 7 | type implementation interface { |
| 8 | Name() string |
nothing calls this directly
no outgoing calls
no test coverage detected