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