1. 14 9月, 2018 2 次提交
  2. 13 9月, 2018 1 次提交
  3. 12 9月, 2018 1 次提交
  4. 06 9月, 2018 1 次提交
  5. 04 9月, 2018 1 次提交
  6. 02 9月, 2018 1 次提交
  7. 01 9月, 2018 4 次提交
  8. 20 8月, 2018 1 次提交
  9. 06 8月, 2018 1 次提交
  10. 30 7月, 2018 2 次提交
  11. 29 7月, 2018 1 次提交
  12. 27 7月, 2018 1 次提交
  13. 26 7月, 2018 1 次提交
  14. 25 7月, 2018 2 次提交
  15. 17 7月, 2018 1 次提交
  16. 13 7月, 2018 1 次提交
  17. 10 7月, 2018 1 次提交
  18. 07 7月, 2018 1 次提交
  19. 30 6月, 2018 3 次提交
  20. 29 6月, 2018 1 次提交
  21. 28 6月, 2018 2 次提交
  22. 27 6月, 2018 1 次提交
  23. 26 6月, 2018 1 次提交
  24. 23 6月, 2018 1 次提交
  25. 20 6月, 2018 2 次提交
  26. 17 6月, 2018 1 次提交
  27. 14 6月, 2018 2 次提交
    • O
      CopySheet() using reflect instead of encoding/gob · 4a1b4064
      Olivier Mengué 提交于
      Use github.com/mohae/deepcopy to deep copy worksheets instead of the
      internal deepcopy function that was using encoding/gob serialization and
      deserialization.
      
      Rationale:
      1/ using `encoding/gob` is much slower than
         [`mohae/deepcopy`](https://github.com/mohae/deepcopy/)
      2/ When building an application this implementation of `deepcopy` drags
         the `encoding/gob` package into the binary. And this package is much
         bigger than `mohae/deepcopy` (which only depends on `time` and `reflect`).
      
      ```
      $ LC_ALL=C stat -f "%6z %N" $(go env GOPATH)/pkg/$(go env GOOS)_$(go env GOARCH)/github.com/mohae/deepcopy.a $(go env GOROOT)/pkg/$(go env GOOS)_$(go env GOARCH)/encoding/gob.a
       10508 .../pkg/darwin_amd64/github.com/mohae/deepcopy.a
      541818 .../pkg/darwin_amd64/encoding/gob.a
      ```
      4a1b4064
    • O
      Extract WriteTo method (see io.WriterTo) to expose bytes written · 2132de1a
      Olivier Mengué 提交于
      Extract a WriteTo() method (see io.WriterTo) that exposes the count of bytes
      written and rewrite Write() to use it.
      2132de1a
  28. 27 5月, 2018 1 次提交
  29. 26 5月, 2018 1 次提交