Appends the string representation of each of parts, using the previously configured separator between each, to appendable.
(A appendable, Iterable<?> parts)
| 93 | */ |
| 94 | |
| 95 | @CanIgnoreReturnValue |
| 96 | public <A extends Appendable> A appendTo(A appendable, Iterable<?> parts) |
| 97 | throws IOException { |
| 98 | return appendTo(appendable, parts.iterator()); |
| 99 | } |
| 100 | |
| 101 | /** |
| 102 | * Appends the string representation of each of {@code parts}, using the previously configured |
no test coverage detected