func slices.DeleteFunc
16 uses
slices (current package)
slices.go#L239: func DeleteFunc[S ~[]E, E any](s S, del func(E) bool) S {
crypto/tls
auth.go#L239: supportedAlgs = slices.DeleteFunc(supportedAlgs, func(sigAlg SignatureScheme) bool {
auth.go#L245: supportedAlgs = slices.DeleteFunc(supportedAlgs, func(sigAlg SignatureScheme) bool {
common.go#L1189: cipherSuites = slices.DeleteFunc(cipherSuites, func(id uint16) bool {
common.go#L1194: cipherSuites = slices.DeleteFunc(cipherSuites, func(id uint16) bool {
common.go#L1273: curvePreferences = slices.DeleteFunc(curvePreferences, func(x CurveID) bool {
common.go#L1278: curvePreferences = slices.DeleteFunc(curvePreferences, func(x CurveID) bool {
common.go#L1283: curvePreferences = slices.DeleteFunc(curvePreferences, isTLS13OnlyKeyExchange)
common.go#L1757: return slices.DeleteFunc(sigAlgs, func(s SignatureScheme) bool {
common.go#L1800: return slices.DeleteFunc(sigAlgs, func(s SignatureScheme) bool {
defaults.go#L71: return slices.DeleteFunc(cipherSuites, func(c uint16) bool {
handshake_client.go#L99: hello.cipherSuites = slices.DeleteFunc(hello.cipherSuites, func(id uint16) bool {
handshake_server_tls13.go#L210: preferredGroups = slices.DeleteFunc(preferredGroups, func(group CurveID) bool {
crypto/x509
verify.go#L622: candidateChains = slices.DeleteFunc(candidateChains, func(chain []*Certificate) bool {
google.golang.org/grpc/encoding
encoding.go#L52: grpcutil.RegisteredCompressorNames = slices.DeleteFunc(grpcutil.RegisteredCompressorNames, func(s string) bool {
net/http
server.go#L3541: nextProtos = slices.DeleteFunc(nextProtos, func(s string) bool {