/** * Retrieves a snapshot of the value of the metric at this moment in time. * * @tsplus getter effect/core/io/Metrics/Metric value */ export function value( self: Metric ): Effect { return Effect.sync(self.unsafeValue(HashSet.empty())) }