Learn R Programming

powerbrmsINLA (version 1.1.1)

or_or: Internal Coalesce Operator Returns the left-hand side if it is not NULL, otherwise the right-hand side.

Description

Internal Coalesce Operator Returns the left-hand side if it is not NULL, otherwise the right-hand side.

Usage

x %||% y

Value

If x is not NULL, returns x; else y.

Arguments

x

Left-hand value.

y

Right-hand value.