[elm-discuss] control structure

2016-10-12 Thread Patricia Nicole Benedicto
hi can i ask what is the repetiton control structucture of this programming languages? -- You received this message because you are subscribed to the Google Groups "Elm Discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [elm-discuss] control structure

2016-10-16 Thread Patricia Nicole Benedicto
element of a list, `map` is the best option. >> If you want to extract a sub list based on some criteria `filter` is >> needed >> If you want to create a value from a list (like adding all elements in a >> list of ints) then foldl or foldr are the functions to use.

Re: [elm-discuss] control structure

2016-10-16 Thread Patricia Nicole Benedicto
to use. > > > > > On Wed, Oct 12, 2016 at 12:44 PM, Patricia Nicole Benedicto < > patriciab...@gmail.com > wrote: > >> hi can i ask what is the repetiton control structucture of this >> programming languages? >> >> -- >> You rec

Re: [elm-discuss] control structure

2016-10-17 Thread Patricia Nicole Benedicto
se functions such as List.map and > List.foldr will accept functions, and repeat the application of the > passed-in function over each element of a list. Does that help? > > On Oct 12, 2016 6:52 PM, "Patricia Nicole Benedicto" < > patriciab...@gmail.com > wrote: >