()
| 2034 | const distributedWithDynamicId = { ref: 0 } |
| 2035 | |
| 2036 | const newDistributedWithDynamicId = () => { |
| 2037 | const current = distributedWithDynamicId.ref |
| 2038 | distributedWithDynamicId.ref = current + 1 |
| 2039 | return current |
| 2040 | } |
| 2041 | |
| 2042 | /** @internal */ |
| 2043 | export const distributedWithDynamic = dual< |