map

fun <T, R> Parser<T>.map(transform: (T) -> R): Parser<R>
fun <T, R> ParsingResult<T>.map(transform: (T) -> R): ParsingResult<R>