Since .() is introduced to handle dot-piping, lambda-piping as well as element extraction, fun() looks more redundant even though it is clearer to only handle dot and lambda piping. And fun() may override external function with the same name, which may lead to potential ambiguity.
Consider to deprecate the use of fun() in a future version.
Since
.()
is introduced to handle dot-piping, lambda-piping as well as element extraction,fun()
looks more redundant even though it is clearer to only handle dot and lambda piping. Andfun()
may override external function with the same name, which may lead to potential ambiguity.Consider to deprecate the use of
fun()
in a future version.