FilteredList
class FilteredList<E>(val source: ObservableList<E>, filter: (E) -> Boolean? = null) : ObservableList<E>
Provides a filtered view of an underlying ObservableList. Changes to this list affect the underlying list, but their effects may not be visible once applied due to filter.
Parameters
filter
to apply to source
Properties
Functions
Inherited functions
Link copied to clipboard
Link copied to clipboard
Ads value to the list at the specify index, or at the end of the list if that index exceeds the current list length.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Replaces the list's contents with elements.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard