(this: Doc.Doc<any>)
| 97 | const proto = { |
| 98 | [DocTypeId]: { _A: (_: never) => _ }, |
| 99 | [Hash.symbol](this: Doc.Doc<any>) { |
| 100 | return Hash.cached(this, protoHash[this._tag](this as any)) |
| 101 | }, |
| 102 | [Equal.symbol](this: Doc.Doc<any>, that: unknown): boolean { |
| 103 | return protoEqual[this._tag](this as any, that as any) |
| 104 | }, |