Documentation / dataflow / com.femastudios.dataflow.util / mutableSetFieldOf
Go to reference
Go to reference
mutableSetFieldOf
fun <T> mutableSetFieldOf(): MutableField<Set<T>>
Returns a new MutableField that initially holds an empty Set
See Also
fun <T> mutableSetFieldOf(element: T): MutableField<Set<T>>
Returns a new MutableField that initially holds a Set containing the given element
See Also
fun <T> mutableSetFieldOf(vararg elements: T): MutableField<Set<T>>
Returns a new MutableField that initially holds a Set containing the given elements
See Also