%==% {fcaR}R Documentation

Equality in Sets and Concepts

Description

Equality in Sets and Concepts

Usage

C1 %==% C2

Arguments

C1

A Set or Concept

C2

A Set or Concept

Details

Both C1 and C2 must be of the same class.

Value

Returns TRUE if C1 is equal to C2.

Examples

# Build two sparse sets
S <- Set$new(attributes = c("A", "B", "C"))
S$assign(A = 1)
T <- Set$new(attributes = c("A", "B", "C"))
T$assign(A = 1)

# Test whether S and T are equal
S %==% T


[Package fcaR version 1.2.2 Index]