Inserts one or more elements before the current element at `index`.
Examples
s <- as_flexseq(letters[1:4])
insert_at(s, 3, c("x", "y"))
#> FingerTree <size=6, named=no>
#> monoids: none
#>
#> [[1]]
#> [1] "a"
#>
#> [[2]]
#> [1] "b"
#>
#> [[3]]
#> [1] "x"
#>
#> [[4]]
#> [1] "y"
#>
#> [[5]]
#> [1] "c"
#>
#> [[6]]
#> [1] "d"
#>