We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
interface Seq<T> { fun map<R>(mapper: fun(T): R): Seq<R> } val mySeq: Seq<Int> = ... val prefix = "N: " mySeq.map(asString(_) with prefix) fun asString(n: Int) :{ With(prefix: String) = #{"{0}{1}" where 0 -> prefix, 1 -> n} }