aboutsummaryrefslogtreecommitdiff
path: root/src/strings/strings_amd64.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/strings/strings_amd64.go')
-rw-r--r--src/strings/strings_amd64.go9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/strings/strings_amd64.go b/src/strings/strings_amd64.go
index 68a1d0125c..75e7d0c139 100644
--- a/src/strings/strings_amd64.go
+++ b/src/strings/strings_amd64.go
@@ -77,12 +77,3 @@ func Index(s, substr string) int {
}
return indexRabinKarp(s, substr)
}
-
-// Count counts the number of non-overlapping instances of substr in s.
-// If substr is an empty string, Count returns 1 + the number of Unicode code points in s.
-func Count(s, substr string) int {
- if len(substr) == 1 && cpu.X86.HasPOPCNT {
- return countByte(s, byte(substr[0]))
- }
- return countGeneric(s, substr)
-}