Function
[Hash.symbol]
(this: SqlRequest<string, unknown, unknown>)
Source from the content-addressed store, hash-verified
| 39 | return this._tag === that._tag && Equal.equals(this.input, that.input) |
| 40 | }, |
| 41 | [Hash.symbol](this: SqlRequest<string, unknown, unknown>): number { |
| 42 | return Hash.cached(this, Hash.combine(Hash.hash(this.input))(Hash.string(this._tag))) |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | const makeRequest = <T extends string, I, II, A, E>( |
Callers
nothing calls this directly
Tested by
no test coverage detected
Used in the wild real call sites across dependent graphs
searching dependent graphs…