1. 03 Sep, 2017 1 commit
  2. 03 Jun, 2017 1 commit
  3. 02 Jun, 2017 2 commits
    • Kenton Varda's avatar
      Add kj::arr() for specifying arrays easily. Requries C++17. · 6643b805
      Kenton Varda authored
      std::initializer_list is problematic because it insists that its elements be const, meaning among other things that you can't move from them. So, an std::initializer_list<kj::String> is often useless. With kj::arr you can do like:
      
          kj::Array<String> = kj::arr(kj::mv(string1), kj::mv(string2));
      
      This requires C++17 due to the fold expression. This could maybe be worked around using some ugly recursion but I'm writing C++17 these days so meh.
      6643b805
    • Kenton Varda's avatar
      Allow initializing kj::Vector from kj::Array and add other methods of Array. · 40b90e4c
      Kenton Varda authored
      I'm increasingly thinking that maybe kj::Array itself should support Vector semantics, but for now this change makes it easier to write code that uses Vector instead of Array.
      40b90e4c
  4. 07 Apr, 2017 2 commits
  5. 02 Feb, 2017 1 commit
  6. 26 Jan, 2017 1 commit
  7. 24 Jan, 2017 1 commit
  8. 29 Jul, 2015 1 commit
  9. 29 Nov, 2014 1 commit
  10. 23 Nov, 2014 1 commit
  11. 22 Nov, 2014 1 commit
  12. 20 Oct, 2014 1 commit
  13. 20 Jun, 2014 1 commit
    • Kenton Varda's avatar
      Change license to MIT. · 889204fe
      Kenton Varda authored
      For portions currently copyright by Kenton (most of it), transfer copyright to Sandstorm Development Group, Inc. (Kenton's company).
      
      The license change is practically meaningless, as MIT and BSD 2-clause are legally equivalent. However, the BSD 2-clause license is sometimes confused for its ugly siblings, BSD 3-clause and BSD 4-clause. The MIT license is more immediately recognizeable for what it is.
      
      Rémy Blank and Jason Choy (the two non-trivial contributors) are on record as approving this change:
      
      https://groups.google.com/d/msg/capnproto/xXDd2HUOCcc/gbe_COIuXKYJ
      889204fe
  14. 10 Dec, 2013 1 commit
  15. 19 Nov, 2013 1 commit
  16. 12 Nov, 2013 1 commit
  17. 25 Oct, 2013 1 commit
  18. 23 Aug, 2013 2 commits
  19. 09 Aug, 2013 1 commit
  20. 07 Aug, 2013 2 commits
  21. 01 Aug, 2013 1 commit
  22. 25 Jul, 2013 1 commit
  23. 17 Jul, 2013 1 commit
  24. 10 Jul, 2013 1 commit
  25. 03 Jul, 2013 1 commit
  26. 12 Jun, 2013 1 commit
  27. 11 Jun, 2013 1 commit
  28. 07 Jun, 2013 1 commit
  29. 06 Jun, 2013 4 commits
  30. 01 Jun, 2013 1 commit
  31. 31 May, 2013 3 commits