Skip to contents

Determines whether two vectors share all their elements with each other.

Usage

share_all_elements(atom1, atom2)

Arguments

atom1

First atom.

atom2

Second atom.

Value

It returns TRUE if all elements of atom1 are present in atom2

and all elements of atom2 are present in atom1, otherwise it returns FALSE.

Examples

share_all_elements(1:3, c(1, 1, 1, 3, 2, 1, 3))
#> [1] TRUE