add abstract method

dynamic add(
  1. E element
)

Adds an element to the set

Sync CollectiveSet returns bool if the set contains the element Async CollectiveSet returns Future<bool> if the set contains the element

Implementation

add(E element);