Documentation / dataflow / com.femastudios.dataflow.util / listFieldOf
Go to reference
Go to reference
listFieldOf
fun <T> listFieldOf(): Field<List<T>>
Returns a constant Field that holds an empty List
See Also
fun <T> listFieldOf(element: T): Field<List<T>>
Returns a constant Field that holds a List containing the given element
See Also
fun <T> listFieldOf(vararg elements: T): Field<List<T>>
Returns a constant Field that holds a List containing the given elements
See Also