DEBSOURCES
Skip Quicknav
sources / golang-github-segmentio-asm / 1.2.0%2Bgit20231107.1cfacc8-1 / mem / contains.go
1234567
package mem import "bytes" func containsGeneric(haystack []byte, needle byte) bool { return bytes.IndexByte(haystack, needle) != -1 }