fosstodon.org is one of the many independent Mastodon servers you can use to participate in the fediverse.
Fosstodon is an invite only Mastodon instance that is open to those who are interested in technology; particularly free & open source software. If you wish to join, contact us for an invite.

Administered by:

Server stats:

10K
active users

June Choe

Pet peeve ( wishlist candidate?):

Why does `args(f)` return a whole *function* whose body is NULL? And why must it, in turn, show me a big fat NULL I never asked for?

The first word in `?args` is "Displays ..." - it really doesn't need to return a whole function object and it for sure doesn't need to *display* a NULL!

Literally the only case for this behavior is to meme about the fact this code that reads like a seal barking is a valid expression in R:

```r
> args(args)(args)
NULL
```

TL;DR if you want the more sensible version of `args()` that:
1) Displays the function's arguments and nothing else in the console
2) Returns NULL invisibly

Then just use `str()`* lmao:

```r
args(sum)
#> function (..., na.rm = FALSE)
#> NULL
str(sum)
#> function (..., na.rm = FALSE)

is.null(args(sum)) # nop, it's a function
#> [1] FALSE
is.null(str(sum))
#> function (..., na.rm = FALSE)
#> [1] TRUE
```

* after stripping the "srcref" attribute

@yjunechoe To be fair that’s a solid argument in its favour. 😂

@klmr LOL I'm actually *just* discovering that:

- NULL in case of a non-function.

So you can just args() all the way down:

...args(args(args(args)(args)))...

I stand corrected. This is indeed solid 😂

@mdsumner Yeah, better! Though it bizarrely prints `NULL` for primitive functions that clearly have user-facing arguments on the R side. Don't even get me started on formals!

adv-r.hadley.nz/functions.html

adv-r.hadley.nz6 Functions | Advanced R