Selecting multiple elements with [

Is this also base R ??? No df$ prefix, no quotes for the names vector!

df |> subset(x > 1, c(y, z))
##   y    z
## 2 l TRUE

So this function has ergonomics similar to filter() and select().