All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.maryk.yaml.CommentReader.kt Maven / Gradle / Ivy

package maryk.yaml

import maryk.json.JsonToken
import maryk.lib.extensions.isLineBreak

/** Reads a comment and fires [onDone] when done */
internal fun IsYamlCharReader.commentReader(onDone: () -> JsonToken): JsonToken {
    while (!this.lastChar.isLineBreak()) {
        read()
    }
    return onDone()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy