( self: Metric.Metric<Type, readonly [In, number], Out> )
| 535 | |
| 536 | /** @internal */ |
| 537 | export const withNow = <Type, In, Out>( |
| 538 | self: Metric.Metric<Type, readonly [In, number], Out> |
| 539 | ): Metric.Metric<Type, In, Out> => mapInput(self, (input: In) => [input, Date.now()] as const) |
| 540 | |
| 541 | /** @internal */ |
| 542 | export const zip = dual< |