TheContext-Podcast icon indicating copy to clipboard operation
TheContext-Podcast copied to clipboard

Discussion Episode 8: Damn Functional Programming with Paco Estevez

Open sockeqwe opened this issue 7 years ago • 6 comments

sockeqwe avatar Mar 02 '17 13:03 sockeqwe

cc @pakoito

artem-zinnatullin avatar Mar 02 '17 16:03 artem-zinnatullin

Errata: in 30:30 I say that to do filter + map to change based on type you need flatMap. There's actually an operator for that called ofType.

pakoito avatar Mar 02 '17 19:03 pakoito

Yup (we have custom ofType() which is filter + map under the hood, that what I was talking about), btw, @pakoito pls just write separate comments instead of editing one because nooooone receives emails about edited comments 😸

artem-zinnatullin avatar Mar 06 '17 07:03 artem-zinnatullin

Btw, here is the code of problematic ofType (not filter as I said in the podcast, my bad):

// This can be applied to any observable no matter which type is emitted by upstream 
// and may lead to no events in downstream if incompatible types are used.
inline fun <reified Downstream : Any> Observable<*>.ofType()
: Observable<Downstream> = ofType(Downstream::class.java)

// This version has type bounds, but for some reason Kotlin compiler requires 
// you to also pass upstream type, though I think it should be able to infer it.
inline fun <Upstream, reified Downstream : Upstream> Observable<Upstream>.ofType2()
: Observable<Downstream> = filter { it is Downstream }.map { it as Downstream }

Same problem of ofType1() will occur if you'll use stardard RxJava's ofType(Class) in both 1.x and 2.x.

artem-zinnatullin avatar Mar 07 '17 06:03 artem-zinnatullin

Examples:

Observable.just(1).ofType(String::class.java).subscribe { /* Compiles :( */ }

Observable.just(1).ofType1<String>().subscribe { /* Compiles :( */ }

Observable.just(1).ofType2<Int, String>().subscribe { /* Not compiles! But requires specifying upstream type */ }

artem-zinnatullin avatar Mar 07 '17 06:03 artem-zinnatullin

Fantastic program, I quite enjoyed it 👍 My suggestion would have been to split it into two shorter parts (there was a good separation of topics about half way through the program), it took me a while to find the free time to listen to the whole episode.

Thanks for explaining Monads, the concept is still exploding in my mind but your explanation is close to what I found in this monads ELI5 and the concept is starting to crystalize in my mind.

I really liked the part where you guys discuss the similarities between Mosby3 and Paco's solution, although I would like a deeper dive in the differences of each solution to understand the nuances. Super interesting topic 👌

Note: The testing robots thing is indeed an abstraction from the UI layer for testing and it's originally called PageObject pattern coming from the old wild web world. Martin Fowler introduced it here: https://martinfowler.com/bliki/PageObject.html

Keep up with the high quality of the topics! 💯

sebaslogen avatar Mar 18 '17 13:03 sebaslogen