summaryrefslogtreecommitdiff
path: root/src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/golang.org/x/text/unicode/runenames/runenames.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/golang.org/x/text/unicode/runenames/runenames.go')
-rw-r--r--src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/golang.org/x/text/unicode/runenames/runenames.go48
1 files changed, 0 insertions, 48 deletions
diff --git a/src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/golang.org/x/text/unicode/runenames/runenames.go b/src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/golang.org/x/text/unicode/runenames/runenames.go
deleted file mode 100644
index 0f01ec4e336..00000000000
--- a/src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/golang.org/x/text/unicode/runenames/runenames.go
+++ /dev/null
@@ -1,48 +0,0 @@
-// Copyright 2016 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.
-
-//go:generate go run gen.go
-
-// Package runenames provides rune names from the Unicode Character Database.
-// For example, the name for '\u0100' is "LATIN CAPITAL LETTER A WITH MACRON".
-//
-// See https://www.unicode.org/Public/UCD/latest/ucd/UnicodeData.txt
-package runenames
-
-import (
- "sort"
-)
-
-// Name returns the name for r.
-func Name(r rune) string {
- i := sort.Search(len(entries), func(j int) bool {
- return entries[j].startRune() > r
- })
- if i == 0 {
- return ""
- }
- e := entries[i-1]
-
- offset := int(r - e.startRune())
- if offset >= e.numRunes() {
- return ""
- }
-
- if e.direct() {
- o := e.index()
- n := e.len()
- return directData[o : o+n]
- }
-
- start := int(index[e.index()+offset])
- end := int(index[e.index()+offset+1])
- base1 := e.base() << 16
- base2 := base1
- if start > end {
- base2 += 1 << 16
- }
- return singleData[start+base1 : end+base2]
-}
-
-func (e entry) len() int { return e.base() }