imap_dfr <- function(.x, .f, ..., .id = NULL) {
.f <- as_mapper(.f, ...)
map2_dfr(.x, vec_index(.x), .f, ...)
}
I don't seem to be able to make use of .id in imap_dfr(). Looking at the source code, the .id arg seems not to be handled at all. Is it the case or am I missing something?