-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathskipUntil.txt
More file actions
34 lines (23 loc) · 586 Bytes
/
skipUntil.txt
File metadata and controls
34 lines (23 loc) · 586 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
% An example application of the skipUntil operator.
% Showcases notification-level styling.
% Based on RxJS's skipUntil diagram:
% https://github.com/ReactiveX/rxjs/blob/fc3d4264395d88887cae1df2de1b931964f3e684/spec/operators/skipUntil-spec.ts
[styles]
event_value_color = white
[styles.a]
fill_color = #FF0000
[styles.b]
fill_color = green
[styles.c]
fill_color = rgb(0, 0, 255)
[styles.d]
fill_color = yellow
value_color = black
[styles.e]
fill_color = magenta
[styles.x]
fill_color = rgb(63, 63, 63)
--a--b--c--d--e----|
---------x------|
> skipUntil
-----------d--e----|