Skip to content

Heavily corrected and slightly expanded version

Latest
Compare
Choose a tag to compare
@d0rj d0rj released this 10 May 16:34
· 3 commits to main since this release

Functional

  • Fixed bugs in some cases;
  • Added the ability to automatically output unknown arguments from a lambda function:
# lambda function
(~ {
    dbl <- x * 2
    trpl <- y * 3
    return (dbl + trpl)
})
# is equivalent of
function(x, y) {
    dbl <- x * 2
    trpl <- y * 3
    return (dbl + trpl)
}
  • Added dataframe support for functional stuff;
  • Some bugs fixed;
  • Package warnings fixed.