1. 06 Jun, 2016 3 commits
  2. 04 Jun, 2016 2 commits
  3. 02 Jun, 2016 1 commit
  4. 01 Jun, 2016 3 commits
  5. 30 May, 2016 3 commits
  6. 27 May, 2016 7 commits
  7. 26 May, 2016 3 commits
  8. 25 May, 2016 4 commits
  9. 24 May, 2016 6 commits
  10. 20 May, 2016 6 commits
  11. 19 May, 2016 1 commit
  12. 11 May, 2016 1 commit
    • Matthias Vallentin's avatar
      Streamline response promise delivery and return · f72ff6a5
      Matthias Vallentin authored
      A common use case involves creating a response promise, doing some work,
      and then finalizing it followed by returning from the function:
      
              auto rp = make_response_promise();
              // do work
              rp.deliver(..);
              return rp;
      
      The last two statements can now be written more idiomatically:
      
              return rp.deliver(..);
      f72ff6a5