all {linq} | R Documentation |
Given a set of logical vectors, are all of the values true?
all(test,
narm = FALSE);
The value is a logical vector of length one.
Let x denote the concatenation of all the logical vectors in ... (after coercion), after removing NAs if requested by na.rm = TRUE.
The value returned Is True If all Of the values In x are True (including If there are no values), And False If at least one Of the values In x Is False. Otherwise the value Is NA (which can only occur If na.rm = False And ... contains no False values And at least one NA value).