NEWS
comprehenr 0.6.10 (2021-01-31)
- add new function 'to_df' which combine result of list comprehension to data.frame (issue #2)
comprehenr 0.6.9 (2021-01-18)
- fix bug with nested 'to_list'/'to_vec'/'alter' (issue #1)
comprehenr 0.6.8 (2020-07-22)
- maintainance release
- convert documentation to markdown
- add rmarkdown to SUGGESTS
- move tests from testthat to tinytest
comprehenr 0.6.7 (2019-06-17)
- urgent fix for bug with incorrect counter in 'alter' when used with 'exclude'
- change behaviour 'lag_list': x -> list(x[[i-1]], x[[i]])
comprehenr 0.6.6 (2019-06-07)
- add 'exclude' function for dropping elements from data.frame/list in 'alter'
comprehenr 0.6.5 (2019-04-09)
- add 'alter' function for conditional lists/data.frames modification
comprehenr 0.6.0 (2019-03-17)
- add iterations over multiple lists: to_vec(for('i, j' in numerate(letters)) if(i %% 2==0) paste(i, j))
- add function 'lag_list': x -> list(x[i-1], x[i])
comprehenr 0.5.4 (2019-03-08)