Is there any combination of rx operators so as to get the first and last debounced event?
This is going to be used in master detail scenarios (or even seach scenarios) where we want immediate loading of first selected item and the last after user stops changing selection.
This would prevent the debounce time to be injected when the user navigates slowly but also prevent bursts of changes.
If debounce operator had an option "immediate" like underscore.js debounce functoin then a merge of the 2 versions of debounce operator would generate the needed result.