-
glue has a two new articles:
- "Get started", with contributions from @stephhazlitt and @BrennanAntone
(#137, #170, #332). - How to write a function that wraps glue (#281).
- "Get started", with contributions from @stephhazlitt and @BrennanAntone
-
If the last argument of
glue()
is empty, it is dropped (#320). This makes
it easy to structureglue()
calls with one argument per line, and to anticipate adding arguments:glue( "here's some text, ", "and maybe more text will be added in the future?", )
-
glue_sql("{var*}")
once again generatesNULL
if var is empty.
This reverts #292. (#318). -
The
.envir
argument toglue()
andglue_data()
really must be an
environment now, as documented. Previously a list-ish object worked in
some cases (by accident, not really by design). When you need to lookup
values in a list-ish object, useglue_data(.x =)
(#308, #317).
Ditto forglue_sql()
andglue_data_sql()
.