copyTo

fun Source.copyTo(output: Sink): Long

Deprecated (with error)

Use transferTo instead

Replace with

import kotlinx.io.transferTo
output.transferTo(this)

Copy all bytes to the output. Depending on actual input and output implementation it could be zero-copy or copy byte per byte. All regular types such as ByteReadPacket, BytePacketBuilder, Input and Output are always optimized so no bytes will be copied.