Skip to content
This repository was archived by the owner on Nov 18, 2024. It is now read-only.

Commit 41fb244

Browse files
Fix use of IObservable
1 parent 404877a commit 41fb244

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Part 2 - Sequence Basics/5. Transformation of sequences.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
In this chapter we will see ways of changing the format of the data. In the real world, an observable may be of any type. It is uncommon that the data is already in format that we want them in. More likely, the values need to be expanded, trimmed, evaluated or simply replaced with something else.
44

55
This will complete the three basic categories of operations. `map` and `flatMap` are the fundamental methods in the third category. In literature, you will often find them refered to as "bind", for reasons that are beyond the scope of this guide.
6-
* Ana(morphism) `T` --> `IObservable<T>`
7-
* Cata(morphism) `IObservable<T>` --> `T`
8-
* Bind `IObservable<T1>` --> `IObservable<T2>`
6+
* Ana(morphism) `T` --> `Observable<T>`
7+
* Cata(morphism) `Observable<T>` --> `T`
8+
* Bind `Observable<T1>` --> `Observable<T2>`
99

1010
In the last chapter we introduced an implementation of `Subscriber` for convenience. We will continue to use it in the examples of this chapter.
1111

0 commit comments

Comments
 (0)