rlang (version 0.0.0.9000)

op-na-default: Replace missing values.

Description

This infix function is similar to %||% but is vectorised and provides a default value for missing elements. It is faster than using ifelse() and does not perform type conversions.

Usage

x %|% y

Arguments

x, y
y for elements of x that are NA; otherwise, x.

See Also

op-null-default

Examples

Run this code
c("a", "b", NA, "c") %|% "default"

Run the code above in your browser using DataCamp Workspace