set.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!