Skip to content

Latest commit

 

History

History
24 lines (21 loc) · 398 Bytes

README.md

File metadata and controls

24 lines (21 loc) · 398 Bytes

task-extra

Contains map6, map7, map8, etc... for Tasks that are not included in the elm core library.

Example:

  Task.Extra.map6
      (\foo bar baz biz craz cray ->
          combineResults
            foo
            bar
            baz
            biz
            craz
            cray
      )
      fooTask
      barTask
      bazTask
      bizTask
      crazTask
      crayTask