Bump github.com/go-openapi/swag from 0.23.1 to 0.24.1
Bumps [github.com/go-openapi/swag](https://github.com/go-openapi/swag) from 0.23.1 to 0.24.1. - [Commits](https://github.com/go-openapi/swag/compare/v0.23.1...v0.24.1) --- updated-dependencies: - dependency-name: github.com/go-openapi/swag dependency-version: 0.24.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
parent
edbd77ff7a
commit
2a72bc8689
87 changed files with 7709 additions and 2840 deletions
34
vendor/github.com/go-openapi/swag/stringutils/strings.go
generated
vendored
Normal file
34
vendor/github.com/go-openapi/swag/stringutils/strings.go
generated
vendored
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
// Copyright 2015 go-swagger maintainers
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
package stringutils
|
||||
|
||||
import (
|
||||
"slices"
|
||||
"strings"
|
||||
)
|
||||
|
||||
// ContainsStrings searches a slice of strings for a case-sensitive match
|
||||
//
|
||||
// Now equivalent to the standard library [slice.Contains].
|
||||
func ContainsStrings(coll []string, item string) bool {
|
||||
return slices.Contains(coll, item)
|
||||
}
|
||||
|
||||
// ContainsStringsCI searches a slice of strings for a case-insensitive match
|
||||
func ContainsStringsCI(coll []string, item string) bool {
|
||||
return slices.ContainsFunc(coll, func(e string) bool {
|
||||
return strings.EqualFold(e, item)
|
||||
})
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue