Closed
Description
Currently, we can write something like:
dfGrouped
.update { something }
.where { it.director == null } asFrame {
update { director } with { "None" }
}
However, it seems a bit random as to which functions are infix
and which aren't.
We need to either make everything infix
or limit infix
to just "inside" DSLs, like add
.
Currently infix: Update.withValue
, Update.perRowCol
, Update.with
, Update.asFrame
, GroupClause.into
. Might also want to check other files to be sure.