mathutil.go 498 B

1234567891011121314151617181920212223
  1. // Copyright (c) 2012-2016 The go-diff authors. All rights reserved.
  2. // https://github.com/sergi/go-diff
  3. // See the included LICENSE file for license details.
  4. //
  5. // go-diff is a Go implementation of Google's Diff, Match, and Patch library
  6. // Original library is Copyright (c) 2006 Google Inc.
  7. // http://code.google.com/p/google-diff-match-patch/
  8. package diffmatchpatch
  9. func min(x, y int) int {
  10. if x < y {
  11. return x
  12. }
  13. return y
  14. }
  15. func max(x, y int) int {
  16. if x > y {
  17. return x
  18. }
  19. return y
  20. }