aboutsummaryrefslogtreecommitdiff
path: root/src/strings
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2015-01-18 12:50:22 -0500
committerRuss Cox <rsc@golang.org>2015-01-19 02:19:17 +0000
commitfd4dc91a96518fdbb47781f97ba43ae36df215a5 (patch)
tree1bfe9dca937db5ad6c7fb9a3b49e21b529ab5303 /src/strings
parente832043e7293cf3237e35ffc3b645c8d04d11f77 (diff)
downloadgo-fd4dc91a96518fdbb47781f97ba43ae36df215a5.tar.xz
strings: remove overengineered Compare implementation
The function is here ONLY for symmetry with package bytes. This function should be used ONLY if it makes code clearer. It is not here for performance. Remove any performance benefit. If performance becomes an issue, the compiler should be fixed to recognize the three-way compare (for all comparable types) rather than encourage people to micro-optimize by using this function. Change-Id: I71f4130bce853f7aef724c6044d15def7987b457 Reviewed-on: https://go-review.googlesource.com/3012 Reviewed-by: Rob Pike <r@golang.org>
Diffstat (limited to 'src/strings')
-rw-r--r--src/strings/compare.go28
-rw-r--r--src/strings/strings_decl.go7
2 files changed, 28 insertions, 7 deletions
diff --git a/src/strings/compare.go b/src/strings/compare.go
new file mode 100644
index 0000000000..b84dddea74
--- /dev/null
+++ b/src/strings/compare.go
@@ -0,0 +1,28 @@
+// Copyright 2015 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+package strings
+
+// Compare returns an integer comparing two strings lexicographically.
+// The result will be 0 if a==b, -1 if a < b, and +1 if a > b.
+//
+// Compare is included only for symmetry with package bytes.
+// It is usually clearer and always faster to use the built-in
+// string comparison operators ==, <, >, and so on.
+func Compare(a, b string) int {
+ // NOTE(rsc): This function does NOT call the runtime cmpstring function,
+ // because we do not want to provide any performance justification for
+ // using strings.Compare. Basically no one should use strings.Compare.
+ // As the comment above says, it is here only for symmetry with package bytes.
+ // If performance is important, the compiler should be changed to recognize
+ // the pattern so that all code doing three-way comparisons, not just code
+ // using strings.Compare, can benefit.
+ if a == b {
+ return 0
+ }
+ if a < b {
+ return -1
+ }
+ return +1
+}
diff --git a/src/strings/strings_decl.go b/src/strings/strings_decl.go
index 9dc2a9a6c6..810a696af2 100644
--- a/src/strings/strings_decl.go
+++ b/src/strings/strings_decl.go
@@ -6,10 +6,3 @@ package strings
// IndexByte returns the index of the first instance of c in s, or -1 if c is not present in s.
func IndexByte(s string, c byte) int // ../runtime/asm_$GOARCH.s
-
-// Compare returns an integer comparing two strings lexicographically.
-// The result will be 0 if a==b, -1 if a < b, and +1 if a > b.
-//
-// In most cases it is simpler to use the built-in comparison operators
-// ==, <, >, and so on.
-func Compare(a, b string) int // ../runtime/noasm.go or ../runtime/asm_*.s