Let’s assume that the latest parameter on the debounce is set to true.
Let’s say my Output is Int and it’s debouncing the integers, but if a 0 (the trigger) is sent then the debounce is ignored and 0 is output.
So the input…
1, wait, 2, 0, 3, wait, 4, wait
Would output…
1, 0, 3, 4.
0 here is bypassing the debounce but also ignoring it so 2 never appears.