Intro to Functional Reactive Programming

Lancez-Vous. C'est gratuit
ou s'inscrire avec votre adresse e-mail
Intro to Functional Reactive Programming par Mind Map: Intro to Functional Reactive Programming

1. Demo

1.1. ALL swift

1.2. very painful

2. Speaker

2.1. Don Huff

2.2. independent consultant on iOS dev

2.3. 20+ years of dev experience

2.3.1. banking

2.3.2. real estate

2.3.3. stocks

2.3.4. @CodeWithoutFear

3. Functional

3.1. focuses on "what" not "how"

3.1.1. think math, f(x)

3.2. unix command line tools

3.3. reduce mutable state

3.4. prefer function composition over type creation

4. Reactive

4.1. push-based stream of data values delivered asynchronously

4.1.1. sensor output, mouse clicks, screen taps etc

4.1.2. subscribe, next, complete Error

4.2. A set of primitive operations

4.2.1. map

4.2.2. filter

4.2.3. take

4.3. sequential and parallel combinations or pipelines