(d any)
| 29 | } |
| 30 | |
| 31 | func (s storeWithEncoder) Default(d any) kv.Values { |
| 32 | return storeWithEncoderValues{ |
| 33 | Values: s.Store.Default(d), |
| 34 | Unmarshaler: s.Unmarshaler, |
| 35 | Marshaller: s.Marshaller, |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | func (s storeWithEncoder) Val(path ...string) kv.Values { |
| 40 | return storeWithEncoderValues{ |