blob: ad2dbc69b77a73362fbd79dfe318c61b0ae0c026 [file] [log] [blame]
Olivier Duperraydcc5fe12012-01-18 09:40:50 -08001// Copyright 2011 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
Andrew Gerrand9834a252011-12-16 09:43:58 +11005package bytes_test
6
7import (
Andrew Gerrande7c222c2012-10-10 11:15:41 +11008 "bytes"
Andrew Gerrand9834a252011-12-16 09:43:58 +11009 "encoding/base64"
Andrew Gerrande7c222c2012-10-10 11:15:41 +110010 "fmt"
Andrew Gerrand9834a252011-12-16 09:43:58 +110011 "io"
12 "os"
Matthew Dempsky56961272013-01-07 09:59:37 +110013 "sort"
Andrew Gerrand9834a252011-12-16 09:43:58 +110014)
15
Andrew Gerrand9834a252011-12-16 09:43:58 +110016func ExampleBuffer() {
Andrew Gerrande7c222c2012-10-10 11:15:41 +110017 var b bytes.Buffer // A Buffer needs no initialization.
Andrew Gerrand9834a252011-12-16 09:43:58 +110018 b.Write([]byte("Hello "))
Andrew Gerrande7c222c2012-10-10 11:15:41 +110019 fmt.Fprintf(&b, "world!")
Andrew Gerrand9834a252011-12-16 09:43:58 +110020 b.WriteTo(os.Stdout)
Andrew Gerrand11e113d2012-02-16 11:50:28 +110021 // Output: Hello world!
Andrew Gerrand9834a252011-12-16 09:43:58 +110022}
23
Andrew Gerrand9834a252011-12-16 09:43:58 +110024func ExampleBuffer_reader() {
25 // A Buffer can turn a string or a []byte into an io.Reader.
Andrew Gerrande7c222c2012-10-10 11:15:41 +110026 buf := bytes.NewBufferString("R29waGVycyBydWxlIQ==")
Andrew Gerrand9834a252011-12-16 09:43:58 +110027 dec := base64.NewDecoder(base64.StdEncoding, buf)
28 io.Copy(os.Stdout, dec)
Andrew Gerrand11e113d2012-02-16 11:50:28 +110029 // Output: Gophers rule!
Andrew Gerrand9834a252011-12-16 09:43:58 +110030}
Matthew Dempsky56961272013-01-07 09:59:37 +110031
32func ExampleCompare() {
33 // Interpret Compare's result by comparing it to zero.
34 var a, b []byte
35 if bytes.Compare(a, b) < 0 {
36 // a less b
37 }
38 if bytes.Compare(a, b) <= 0 {
39 // a less or equal b
40 }
41 if bytes.Compare(a, b) > 0 {
42 // a greater b
43 }
44 if bytes.Compare(a, b) >= 0 {
45 // a greater or equal b
46 }
47
48 // Prefer Equal to Compare for equality comparisons.
49 if bytes.Equal(a, b) {
50 // a equal b
51 }
52 if !bytes.Equal(a, b) {
53 // a not equal b
54 }
55}
56
57func ExampleCompare_search() {
58 // Binary search to find a matching byte slice.
59 var needle []byte
60 var haystack [][]byte // Assume sorted
61 i := sort.Search(len(haystack), func(i int) bool {
Matthew Dempsky8cf45902013-01-06 22:43:32 -050062 // Return haystack[i] >= needle.
63 return bytes.Compare(haystack[i], needle) >= 0
Matthew Dempsky56961272013-01-07 09:59:37 +110064 })
Matthew Dempsky8cf45902013-01-06 22:43:32 -050065 if i < len(haystack) && bytes.Equal(haystack[i], needle) {
Matthew Dempsky56961272013-01-07 09:59:37 +110066 // Found it!
67 }
68}
Brad Fitzpatricke515d802013-02-01 08:41:25 -080069
70func ExampleTrimSuffix() {
71 var b = []byte("Hello, goodbye, etc!")
72 b = bytes.TrimSuffix(b, []byte("goodbye, etc!"))
73 b = bytes.TrimSuffix(b, []byte("gopher"))
74 b = append(b, bytes.TrimSuffix([]byte("world!"), []byte("x!"))...)
75 os.Stdout.Write(b)
76 // Output: Hello, world!
77}
78
79func ExampleTrimPrefix() {
80 var b = []byte("Goodbye,, world!")
81 b = bytes.TrimPrefix(b, []byte("Goodbye,"))
82 b = bytes.TrimPrefix(b, []byte("See ya,"))
83 fmt.Printf("Hello%s", b)
84 // Output: Hello, world!
85}