Skip to contents

Print a shard_report Object

Usage

# S3 method for class 'shard_report'
print(x, ...)

Arguments

x

A shard_report object.

...

Ignored.

Value

The input x, invisibly.

Examples

# \donttest{
res <- shard_map(shards(100, workers = 2), function(s) sum(s$idx), workers = 2)
pool_stop()
rpt <- report(result = res)
print(rpt)
#> shard_report (summary)
#> Generated: 2026-03-30 20:47:35 
#> 
#> Pool: (not active)
#> 
#> Memory:
#>   (no pool active)
# }