Interface
Hashable
Hashable types must implement a method that returns a key. This key will be associated with a cached value.
Source from the content-addressed store, hash-verified
| 24 | // Hashable types must implement a method that returns a key. This key will be |
| 25 | // associated with a cached value. |
| 26 | type Hashable interface { |
| 27 | Hash() uint64 |
| 28 | } |
| 29 | |
| 30 | // HasOnEvict type is (optionally) implemented by cache objects to clean after |
| 31 | // themselves. |
Implementers 15
Whereinternal/sqladapter/exql/where.go Valuesinternal/sqladapter/exql/value.go Valueinternal/sqladapter/exql/value.go Statementinternal/sqladapter/exql/statement.go Databaseinternal/sqladapter/exql/database.go Columninternal/sqladapter/exql/column.go Tableinternal/sqladapter/exql/table.go Returninginternal/sqladapter/exql/returning.go Rawinternal/sqladapter/exql/raw.go
Tested by
no test coverage detected