├── .gitignore ├── .goreleaser.yml ├── LICENSE ├── README.md ├── UNLICENSE ├── check.sh ├── common.go ├── common_test.go ├── constants_test.go ├── go.mod ├── highlight.go ├── highlight_test.go ├── index.go ├── index_benchmark_test.go ├── index_bug_test.go ├── index_fuzz_test.go ├── index_ignorecase_benchmark_test.go └── index_test.go /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | 3 | dist/ 4 | -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boyter/go-string/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boyter/go-string/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boyter/go-string/HEAD/README.md -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boyter/go-string/HEAD/UNLICENSE -------------------------------------------------------------------------------- /check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boyter/go-string/HEAD/check.sh -------------------------------------------------------------------------------- /common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boyter/go-string/HEAD/common.go -------------------------------------------------------------------------------- /common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boyter/go-string/HEAD/common_test.go -------------------------------------------------------------------------------- /constants_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boyter/go-string/HEAD/constants_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/boyter/go-string 2 | 3 | go 1.20 4 | -------------------------------------------------------------------------------- /highlight.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boyter/go-string/HEAD/highlight.go -------------------------------------------------------------------------------- /highlight_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boyter/go-string/HEAD/highlight_test.go -------------------------------------------------------------------------------- /index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boyter/go-string/HEAD/index.go -------------------------------------------------------------------------------- /index_benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boyter/go-string/HEAD/index_benchmark_test.go -------------------------------------------------------------------------------- /index_bug_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boyter/go-string/HEAD/index_bug_test.go -------------------------------------------------------------------------------- /index_fuzz_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boyter/go-string/HEAD/index_fuzz_test.go -------------------------------------------------------------------------------- /index_ignorecase_benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boyter/go-string/HEAD/index_ignorecase_benchmark_test.go -------------------------------------------------------------------------------- /index_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boyter/go-string/HEAD/index_test.go --------------------------------------------------------------------------------