The Logicals is defined as the Set containing the elements TRUE and FALSE.

See also

Super class

set6::Set -> Logicals

Methods

Public methods

Inherited methods

Method new()

Create a new Logicals object.

Usage

Logicals$new()

Details

The Logical set is the set containing TRUE and FALSE.

Returns

A new Logicals object.


Method clone()

The objects of this class are cloneable with this method.

Usage

Logicals$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.

Examples

l <- Logicals$new()
print(l)
#> {TRUE, FALSE} 
l$contains(list(TRUE, 1, FALSE))
#> [1]  TRUE FALSE  TRUE