( self: Metric.Metric<Type, In, Out> )
| 526 | |
| 527 | /* @internal */ |
| 528 | export const value = <Type, In, Out>( |
| 529 | self: Metric.Metric<Type, In, Out> |
| 530 | ): Effect.Effect<Out> => |
| 531 | core.fiberRefGetWith( |
| 532 | core.currentMetricLabels, |
| 533 | (tags) => core.sync(() => self.unsafeValue(tags)) |
| 534 | ) |
| 535 | |
| 536 | /** @internal */ |
| 537 | export const withNow = <Type, In, Out>( |
no test coverage detected