Split to chunks of size n
Examples
tail(chunks_of_n(seq_len(100), 7), 3)
#> $`13`
#> [1] 85 86 87 88 89 90 91
#>
#> $`14`
#> [1] 92 93 94 95 96 97 98
#>
#> $`15`
#> [1] 99 100
#>
tail(chunks_of_n(seq_len(100), 7, even = TRUE), 3)
#> $`13`
#> [1] 83 84 85 86 87 88
#>
#> $`14`
#> [1] 89 90 91 92 93 94
#>
#> $`15`
#> [1] 95 96 97 98 99 100
#>