summaryrefslogtreecommitdiffstats
path: root/vendor/golang.org/x/text/runes/example_test.go
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2018-04-16 05:37:14 -0700
committerJoram Wilander <jwawilander@gmail.com>2018-04-16 08:37:14 -0400
commit6e2cb00008cbf09e556b00f87603797fcaa47e09 (patch)
tree3c0eb55ff4226a3f024aad373140d1fb860a6404 /vendor/golang.org/x/text/runes/example_test.go
parentbf24f51c4e1cc6286885460672f7f449e8c6f5ef (diff)
downloadchat-6e2cb00008cbf09e556b00f87603797fcaa47e09.tar.gz
chat-6e2cb00008cbf09e556b00f87603797fcaa47e09.tar.bz2
chat-6e2cb00008cbf09e556b00f87603797fcaa47e09.zip
Depenancy upgrades and movign to dep. (#8630)
Diffstat (limited to 'vendor/golang.org/x/text/runes/example_test.go')
-rw-r--r--vendor/golang.org/x/text/runes/example_test.go60
1 files changed, 0 insertions, 60 deletions
diff --git a/vendor/golang.org/x/text/runes/example_test.go b/vendor/golang.org/x/text/runes/example_test.go
deleted file mode 100644
index a60bfd9d2..000000000
--- a/vendor/golang.org/x/text/runes/example_test.go
+++ /dev/null
@@ -1,60 +0,0 @@
-// Copyright 2014 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 runes_test
-
-import (
- "fmt"
- "unicode"
-
- "golang.org/x/text/runes"
- "golang.org/x/text/transform"
- "golang.org/x/text/unicode/norm"
- "golang.org/x/text/width"
-)
-
-func ExampleRemove() {
- t := transform.Chain(norm.NFD, runes.Remove(runes.In(unicode.Mn)), norm.NFC)
- s, _, _ := transform.String(t, "résumé")
- fmt.Println(s)
-
- // Output:
- // resume
-}
-
-func ExampleMap() {
- replaceHyphens := runes.Map(func(r rune) rune {
- if unicode.Is(unicode.Hyphen, r) {
- return '|'
- }
- return r
- })
- s, _, _ := transform.String(replaceHyphens, "a-b‐c⸗d﹣e")
- fmt.Println(s)
-
- // Output:
- // a|b|c|d|e
-}
-
-func ExampleIn() {
- // Convert Latin characters to their canonical form, while keeping other
- // width distinctions.
- t := runes.If(runes.In(unicode.Latin), width.Fold, nil)
- s, _, _ := transform.String(t, "アルアノリウ tech / アルアノリウ tech")
- fmt.Println(s)
-
- // Output:
- // アルアノリウ tech / アルアノリウ tech
-}
-
-func ExampleIf() {
- // Widen everything but ASCII.
- isASCII := func(r rune) bool { return r <= unicode.MaxASCII }
- t := runes.If(runes.Predicate(isASCII), nil, width.Widen)
- s, _, _ := transform.String(t, "アルアノリウ tech / 中國 / 5₩")
- fmt.Println(s)
-
- // Output:
- // アルアノリウ tech / 中國 / 5₩
-}