Skip to content

Commit ba26816

Browse files
committed
Linked to examples
1 parent e20335e commit ba26816

1 file changed

Lines changed: 13 additions & 13 deletions

File tree

Part 2 - Sequence Basics/3. Inspection.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Subscription evenNumbers = values
2929
);
3030
```
3131

32-
Output
32+
[Output](/tests/java/itrx/chapter2/inspection/AllExample.java)
3333
```
3434
true
3535
Completed
@@ -55,7 +55,7 @@ Subscription subscription2 = values
5555
);
5656
```
5757

58-
Output
58+
[Output](/tests/java/itrx/chapter2/inspection/AllExample.java)
5959
```
6060
0
6161
1
@@ -85,7 +85,7 @@ Subscription subscription = values
8585
);
8686
```
8787

88-
Output
88+
[Output](/tests/java/itrx/chapter2/inspection/AllExample.java)
8989
```
9090
Error: java.lang.Exception
9191
```
@@ -108,7 +108,7 @@ Subscription subscription = values
108108
);
109109
```
110110

111-
Output
111+
[Output](/tests/java/itrx/chapter2/inspection/AllExample.java)
112112
```
113113
false
114114
Completed
@@ -132,7 +132,7 @@ Subscription subscription = values
132132
);
133133
```
134134

135-
Output
135+
[Output](/tests/java/itrx/chapter2/inspection/ExistsExample.java)
136136
```
137137
false
138138
Completed
@@ -142,7 +142,7 @@ Here our range didn't go high enough for the `i > 2` condition to succeed. If we
142142
```java
143143
Observable<Integer> values = Observable.range(0, 4);
144144
```
145-
We will get a successful result
145+
[We will get a successful result](/tests/java/itrx/chapter2/inspection/ExistsExample.java)
146146
```
147147
true
148148
Completed
@@ -166,7 +166,7 @@ Subscription subscription = values
166166
);
167167
```
168168

169-
Output
169+
[Output](/tests/java/itrx/chapter2/inspection/IsEmptyExample.java)
170170
```
171171
false
172172
Completed
@@ -192,7 +192,7 @@ Subscription subscription = values
192192
);
193193
```
194194

195-
Output
195+
[Output](/tests/java/itrx/chapter2/inspection/ContainsExample.java)
196196
```
197197
true
198198
Completed
@@ -218,7 +218,7 @@ Subscription subscription = values
218218
);
219219
```
220220

221-
Output
221+
[Output](/tests/java/itrx/chapter2/inspection/DefaultIfEmptyExample.java)
222222
```
223223
2
224224
Completed
@@ -261,7 +261,7 @@ Subscription subscription = values
261261
);
262262
```
263263

264-
Output
264+
[Output](/tests/java/itrx/chapter2/inspection/ElementAtExample.java)
265265
```
266266
102
267267
Completed
@@ -281,7 +281,7 @@ Subscription subscription = values
281281
);
282282
```
283283

284-
Output
284+
[Output](/tests/java/itrx/chapter2/inspection/ElementAtExample.java)
285285
```
286286
0
287287
Completed
@@ -304,7 +304,7 @@ Observable.sequenceEqual(strings, ints, (s,i) -> s.equals(i.toString()))
304304
);
305305
```
306306

307-
Output
307+
[Output](/tests/java/itrx/chapter2/inspection/SequenceEqualExample.java)
308308
```
309309
true
310310
Completed
@@ -329,7 +329,7 @@ Observable.sequenceEqual(values, values)
329329
);
330330
```
331331

332-
Output
332+
[Output](/tests/java/itrx/chapter2/inspection/SequenceEqualExample.java)
333333
```
334334
Error: java.lang.Exception
335335
```

0 commit comments

Comments
 (0)