Learn R Programming

qbrms (version 1.0.1)

null-coalesce: Null Coalescing Operator

Description

Returns the first non-NULL value.

Usage

x %||% y

Value

x if not NULL, otherwise y.

Arguments

x

First value.

y

Second value.