Function
GetMapGen
(tx *txwrap.TxWrap, query string, args ...interface{})
Source from the content-addressed store, hash-verified
| 56 | } |
| 57 | |
| 58 | func GetMapGen[PT MapConverterPtr[T], T any](tx *txwrap.TxWrap, query string, args ...interface{}) PT { |
| 59 | m := tx.GetMap(query, args...) |
| 60 | return FromMap[PT](m) |
| 61 | } |
| 62 | |
| 63 | func GetMappable[PT DBMappablePtr[T], T any](tx *txwrap.TxWrap, query string, args ...interface{}) PT { |
| 64 | m := tx.GetMap(query, args...) |
Callers
nothing calls this directly
Tested by
no test coverage detected