func slices.DeleteFunc

14 uses

	slices (current package)
		slices.go#L239: func DeleteFunc[S ~[]E, E any](s S, del func(E) bool) S {

	crypto/tls
		auth.go#L215: 		supportedAlgs = slices.DeleteFunc(supportedAlgs, func(sigAlg SignatureScheme) bool {
		auth.go#L221: 	supportedAlgs = slices.DeleteFunc(supportedAlgs, func(sigAlg SignatureScheme) bool {
		common.go#L1138: 		cipherSuites = slices.DeleteFunc(cipherSuites, func(id uint16) bool {
		common.go#L1143: 		cipherSuites = slices.DeleteFunc(cipherSuites, func(id uint16) bool {
		common.go#L1222: 		curvePreferences = slices.DeleteFunc(curvePreferences, func(x CurveID) bool {
		common.go#L1227: 		curvePreferences = slices.DeleteFunc(curvePreferences, func(x CurveID) bool {
		common.go#L1232: 		curvePreferences = slices.DeleteFunc(curvePreferences, isTLS13OnlyKeyExchange)
		common.go#L1701: 	return slices.DeleteFunc(sigAlgs, func(s SignatureScheme) bool {
		common.go#L1744: 	return slices.DeleteFunc(sigAlgs, func(s SignatureScheme) bool {
		defaults.go#L61: 	return slices.DeleteFunc(cipherSuites, func(c uint16) bool {
		handshake_client.go#L100: 		hello.cipherSuites = slices.DeleteFunc(hello.cipherSuites, func(id uint16) bool {
		handshake_server_tls13.go#L210: 	preferredGroups = slices.DeleteFunc(preferredGroups, func(group CurveID) bool {

	net/http
		server.go#L3570: 	nextProtos = slices.DeleteFunc(nextProtos, func(s string) bool {