1. 04 11月, 2018 1 次提交
  2. 02 11月, 2018 1 次提交
  3. 27 10月, 2018 1 次提交
  4. 17 10月, 2018 1 次提交
  5. 14 9月, 2018 4 次提交
  6. 12 9月, 2018 1 次提交
  7. 06 8月, 2018 1 次提交
  8. 17 7月, 2018 1 次提交
  9. 14 6月, 2018 1 次提交
    • 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
  10. 11 6月, 2018 1 次提交
    • S
      Documentation: · ccdefb3b
      Sebastian Willing 提交于
      * Add information about return value of NewSheet()
      * Minor documentation language fixes
      Samples:
      * Added sample go file for dumping a XLSX file to the console
      ccdefb3b
  11. 27 5月, 2018 1 次提交
  12. 15 5月, 2018 1 次提交
  13. 14 5月, 2018 1 次提交
  14. 07 5月, 2018 1 次提交
  15. 03 5月, 2018 1 次提交
  16. 26 4月, 2018 1 次提交
  17. 16 3月, 2018 1 次提交
  18. 06 3月, 2018 1 次提交
  19. 04 12月, 2017 1 次提交
  20. 31 10月, 2017 1 次提交
  21. 20 10月, 2017 1 次提交
  22. 30 9月, 2017 1 次提交
  23. 13 9月, 2017 2 次提交
  24. 19 8月, 2017 1 次提交
  25. 13 8月, 2017 1 次提交
  26. 01 8月, 2017 1 次提交
  27. 30 7月, 2017 2 次提交
  28. 16 7月, 2017 1 次提交
  29. 06 7月, 2017 1 次提交
  30. 27 6月, 2017 1 次提交
  31. 14 6月, 2017 1 次提交
  32. 08 6月, 2017 1 次提交
  33. 24 5月, 2017 1 次提交
  34. 13 5月, 2017 1 次提交
  35. 30 4月, 2017 1 次提交