same_length: Same Length

View source: R/same-length.r

same_lengthR Documentation

Same Length

Description

same_length() tests if two objects have same length
different_length() tests if two objects have different length

Usage

  same_length(x, y)

Arguments

x

a matrix

y

a matrix

Examples

same_length(1:10, letters[11:20]) # TRUE
same_length(1:10, letters[11:19]) # FALSE

a = matrix(1:15, 5, 3)
same_length(a, a) # TRUE
same_length(a, t(a)) # TRUE

different_length(t(a), a) # FALSE
different_length(1:10, a) # TRUE
different_length(a, "a") # TRUE

tester documentation built on May 29, 2024, 7:33 a.m.