Skip to content

A Reactive List giving observables for changes, and current list items.

License

Notifications You must be signed in to change notification settings

ChrisPulman/ReactiveList

Repository files navigation

ReactiveList

A Reactive List giving observables for changes, and current list items.

Features

  • Reactive: The list is reactive, and will notify observers of changes.

  • Add: Add an item to the list.

  • Remove: Remove an item from the list.

  • Update: Update an item in the list.

  • IndexOf: Get an item from the current list of items.

  • Count: Get the count of items in the list.

  • Clear: Clear the list of all items.

  • Added: Observe changes Added to the list.

  • Removed: Observe changes Removed from the list.

  • Updated: Observe changes Updated in the list.

  • CurrentItems: Observe the current list of items.