File: equal_fold.go

package info (click to toggle)
golang-github-segmentio-encoding 0.5.3-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 14,472 kB
  • sloc: makefile: 286
file content (40 lines) | stat: -rw-r--r-- 1,132 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//go:generate go run equal_fold_asm.go -out equal_fold_amd64.s -stubs equal_fold_amd64.go
package ascii

import (
	"github.com/segmentio/asm/ascii"
)

// EqualFold is a version of bytes.EqualFold designed to work on ASCII input
// instead of UTF-8.
//
// When the program has guarantees that the input is composed of ASCII
// characters only, it allows for greater optimizations.
func EqualFold(a, b []byte) bool {
	return ascii.EqualFold(a, b)
}

func HasPrefixFold(s, prefix []byte) bool {
	return ascii.HasPrefixFold(s, prefix)
}

func HasSuffixFold(s, suffix []byte) bool {
	return ascii.HasSuffixFold(s, suffix)
}

// EqualFoldString is a version of strings.EqualFold designed to work on ASCII
// input instead of UTF-8.
//
// When the program has guarantees that the input is composed of ASCII
// characters only, it allows for greater optimizations.
func EqualFoldString(a, b string) bool {
	return ascii.EqualFoldString(a, b)
}

func HasPrefixFoldString(s, prefix string) bool {
	return ascii.HasPrefixFoldString(s, prefix)
}

func HasSuffixFoldString(s, suffix string) bool {
	return ascii.HasSuffixFoldString(s, suffix)
}