[elm-discuss] Re: Routing, authentication etc. still on my 3rd Elm project.

2016-09-29 Thread 'Rupert Smith' via Elm Discuss
On Thursday, September 29, 2016 at 12:26:17 PM UTC+1, Wouter In t Velt wrote: > > Very useful to read your experiences with Elm. I am in a more-or-less > similar point on the learning curve. > Small aside: The Elm Exts (extentions) package has a simple function > called catMaybes to filter out

[elm-discuss] Re: Routing, authentication etc. still on my 3rd Elm project.

2016-09-29 Thread Wouter In t Velt
Very useful to read your experiences with Elm. I am in a more-or-less similar point on the learning curve. Small aside: The Elm Exts (extentions) package has a simple function called catMaybes to filter out Nothings: catMaybes : List (Maybe a) -> List a Link here: