github.com/hikaru7719/go@v0.0.0-20181025140707-c8b2ac68906a/src/bytes/bytes_decl.go (about) 1 // Copyright 2010 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 5 package bytes 6 7 //go:noescape 8 9 // IndexByte returns the index of the first instance of c in b, or -1 if c is not present in b. 10 func IndexByte(b []byte, c byte) int // in internal/bytealg 11 12 //go:noescape 13 14 // Equal returns a boolean reporting whether a and b 15 // are the same length and contain the same bytes. 16 // A nil argument is equivalent to an empty slice. 17 func Equal(a, b []byte) bool // in internal/bytealg 18 19 //go:noescape 20 21 // Compare returns an integer comparing two byte slices lexicographically. 22 // The result will be 0 if a==b, -1 if a < b, and +1 if a > b. 23 // A nil argument is equivalent to an empty slice. 24 func Compare(a, b []byte) int // in internal/bytealg