Due to the characters, I'm having a hard time googling for which package the %||%
function comes from.
I have tried googling the string literal, as well as 'percent bar bar percent' and similar.
Due to the characters, I'm having a hard time googling for which package the %||%
function comes from.
I have tried googling the string literal, as well as 'percent bar bar percent' and similar.
It is present in rlang
package. See
?rlang::`%||%`
It behaves like dplyr::coalesce
but for NULL
values instead of NA
s.