SyntaxFix
Write A Post
Hire A Developer
Questions
If it's just a matter of easy reading, you could always define your own function :
is.not.null <- function(x) !is.null(x)
So you can use it all along your program.
is.not.null(3) is.not.null(NULL)