Print a shard_reduce_result Object
Usage
# S3 method for class 'shard_reduce_result'
print(x, ...)Examples
# \donttest{
res <- shard_reduce(4L, map = function(s) sum(s$idx),
combine = `+`, init = 0, workers = 2)
pool_stop()
print(res)
#> shard_reduce result
#> Duration: 1.68 seconds
#> Partials: 4
#> Partial max bytes: 56 B
# }