1. 02 Sep, 2018 1 commit
  2. 31 Jan, 2018 1 commit
    • Kenton Varda's avatar
      Add Array::attach() and ArrayPtr::attach(). · 8447ac76
      Kenton Varda authored
      Array::attach() is like Own::attach().
      
      ArrayPtr::attach() promotes an ArrayPtr to an Array by attaching other objects to it. (Hopefully one of those objects actually owns the underlying array data.)
      8447ac76
  3. 02 Jun, 2017 1 commit
    • 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
  4. 24 Jan, 2017 1 commit
  5. 29 Jul, 2015 1 commit
  6. 30 Dec, 2014 1 commit
  7. 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
  8. 23 Aug, 2013 1 commit
  9. 07 Aug, 2013 1 commit
  10. 03 Jul, 2013 1 commit
  11. 12 Jun, 2013 1 commit
  12. 06 Jun, 2013 2 commits
  13. 04 Jun, 2013 1 commit
  14. 03 Jun, 2013 2 commits
  15. 31 May, 2013 3 commits