nonEmpty()

Test if the set is empty.

Signature

nonEmpty(): Boolean

Description

The nonEmpty() tests if the set is empty.

Parameters

None

Return value

Type Description

Boolean

Status of set elements:
true = The set isn’t empty.
false = The set is empty.

Examples

// `toSet()` converts an array to a set.
// In thise case, it creates an empty set.
let set = [].toSet()
set.nonEmpty()
false

Is this article helpful? 

Tell Fauna how the article can be improved:
Visit Fauna's forums or email docs@fauna.com

Thank you for your feedback!