addDelimitedToCopySequence

inline fun InOutBuffer.addDelimitedToCopySequence(delimiter: String, pauseOnDelimiter: Boolean = true, consumeDelimiter: Boolean = true, stopSequenceOnChar: (Char) -> Boolean)
inline fun InOutBuffer.addDelimitedToCopySequence(delimiter: Char, pauseOnDelimiter: Boolean = true, consumeDelimiter: Boolean = true, stopSequenceOnChar: (Char) -> Boolean)

Parameters

stopSequenceOnChar

Determines whether the sequence parsing should stop when the character is encountered. It also allows for verifying that the character is allowed.