func slices.DeleteFunc

7 uses

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

	crypto/tls
		common.go#L1117: 		return slices.DeleteFunc(cipherSuites, func(id uint16) bool {
		common.go#L1193: 		curvePreferences = slices.DeleteFunc(curvePreferences, func(x CurveID) bool {
		common.go#L1198: 		curvePreferences = slices.DeleteFunc(curvePreferences, isTLS13OnlyKeyExchange)
		defaults.go#L51: 	return slices.DeleteFunc(suites, func(c uint16) bool {
		handshake_server_tls13.go#L208: 	preferredGroups = slices.DeleteFunc(preferredGroups, func(group CurveID) bool {

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