(str string)
| 409 | } |
| 410 | |
| 411 | func hasInvalidXMLChar(str string) bool { |
| 412 | for _, s := range str { |
| 413 | if !validXMLChar(s) { |
| 414 | return true |
| 415 | } |
| 416 | } |
| 417 | return false |
| 418 | } |
| 419 | |
| 420 | // Generate and call MultiDelete S3 requests based on entries received from the iterator. |
| 421 | func (c *Client) removeObjectsIter(ctx context.Context, bucketName string, objectsIter iter.Seq[ObjectInfo], yield func(RemoveObjectResult) bool, opts RemoveObjectsOptions) { |
no test coverage detected