NULL_to_NA: Converts a NULL to NA; or returns the argument unchanged...

View source: R/misc.R

NULL_to_NAR Documentation

Converts a NULL to NA; or returns the argument unchanged otherwise

Description

This is useful for missing list elements (which returns NULL), but when the missing element in refClass should be NA (and NULL would return an error)

Usage

NULL_to_NA(var_or_NULL)

Arguments

var_or_NULL

A variable of any kind or NULL

Examples

  NULL_to_NA(NA)   ## NA
  NULL_to_NA(NULL) ## NA
  NULL_to_NA("hi") ## "hi"


rmzqc documentation built on May 29, 2024, 12:06 p.m.