## Non-zero numbers are truthyis_truthy(1)## So are non-empty vectors that are not the zero scalaris_truthy(c(1))## Matrices are truthy, even if they are empty,## because they are a classis_truthy(matrix(nrow=0,ncol=0))## But empty vectors are falsyis_truthy(numeric())