mirror of
https://git.uploadfilter24.eu/lerentis/terraform-provider-gitea.git
synced 2024-11-05 10:28:12 +00:00
b4859cda6b
Bumps [github.com/hashicorp/terraform-plugin-docs](https://github.com/hashicorp/terraform-plugin-docs) from 0.7.0 to 0.13.0. - [Release notes](https://github.com/hashicorp/terraform-plugin-docs/releases) - [Changelog](https://github.com/hashicorp/terraform-plugin-docs/blob/main/CHANGELOG.md) - [Commits](https://github.com/hashicorp/terraform-plugin-docs/compare/v0.7.0...v0.13.0) --- updated-dependencies: - dependency-name: github.com/hashicorp/terraform-plugin-docs dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
34 lines
935 B
Go
34 lines
935 B
Go
// Copyright 2016 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package cases
|
|
|
|
import "golang.org/x/text/transform"
|
|
|
|
type caseFolder struct{ transform.NopResetter }
|
|
|
|
// caseFolder implements the Transformer interface for doing case folding.
|
|
func (t *caseFolder) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {
|
|
c := context{dst: dst, src: src, atEOF: atEOF}
|
|
for c.next() {
|
|
foldFull(&c)
|
|
c.checkpoint()
|
|
}
|
|
return c.ret()
|
|
}
|
|
|
|
func (t *caseFolder) Span(src []byte, atEOF bool) (n int, err error) {
|
|
c := context{src: src, atEOF: atEOF}
|
|
for c.next() && isFoldFull(&c) {
|
|
c.checkpoint()
|
|
}
|
|
return c.retSpan()
|
|
}
|
|
|
|
func makeFold(o options) transform.SpanningTransformer {
|
|
// TODO: Special case folding, through option Language, Special/Turkic, or
|
|
// both.
|
|
// TODO: Implement Compact options.
|
|
return &caseFolder{}
|
|
}
|