Create a standard set of breaks
Examples
chop(1:10, c(2, 5, 8))
#> [1] [1, 2) [2, 5) [2, 5) [2, 5) [5, 8) [5, 8) [5, 8) [8, 10] [8, 10]
#> [10] [8, 10]
#> Levels: [1, 2) [2, 5) [5, 8) [8, 10]
chop(1:10, brk_default(c(2, 5, 8)))
#> [1] [1, 2) [2, 5) [2, 5) [2, 5) [5, 8) [5, 8) [5, 8) [8, 10] [8, 10]
#> [10] [8, 10]
#> Levels: [1, 2) [2, 5) [5, 8) [8, 10]