-
alloc(list(1), 2)
now giveslist(1, 1)
instead oflist(list(1), list(1))
, which can still be generated withalloc(list(1), 2, simplify = FALSE)
. This change also affectsftransform()
/fmutate()
, making, e.g.,fmutate(data, y = list(1))
consistent withdplyr::mutate(data, y = list(1))
. Thanks @MattAFiedler (#753). -
fslice()
now works with sf data frames.