Tired of using Maybe.map all the time? Make your code more understandable and readable with MaybePipeline!
Insted of Maybe.map f ma
use ma ma ?> f
.
list
|> List.head
?> .createdAt
?> Date.toTime
Insted of Maybe.andThen ma f
use ma ??> f
.
laneId
|> getLaneById board
??> \x -> next x lanes