qinwf/re2r

Question: argument order

gagolews opened this issue · 2 comments

For example: re2_match(pattern, string)

for some the reverse arg order is more natural (string, pattern) (see e.g., stringr functions)

(string, pattern) works better with magrittr's pipe operator to

string %>% re2_match(pattern)

what do you think?

qinwf commented

Changes are landed.