Skip to content

Instantly share code, notes, and snippets.

View ArdusJax's full-sized avatar
:octocat:
Github Universe 2019

Christopher O'Brian ArdusJax

:octocat:
Github Universe 2019
View GitHub Profile
@ArdusJax
ArdusJax / Forcomptran.md
Created May 1, 2017 05:05 — forked from loicdescotte/Forcomptran.md
Scala for comprehension translation helper

#Scala for comprehension translation helper

"For comprehension" is a another syntaxe to use map, flatMap and withFilter (or filter) methods.

yield keyword is used to aggregate values in the resulting structure.

This composition can be used on any type implementing this methods, like List, Option, Future...