Skip to contents

Null coalescing operator Returns left value if not NULL, otherwise right value.

Usage

a %||% b

Arguments

a

Left-hand side value.

b

Right-hand side value.

Value

Left value if not NULL or length zero, otherwise right value.