Inline test data structure changed
This commit is contained in:
committed by
Michael Bogdanov
parent
b37c0d3fff
commit
02c6bdeaa3
@@ -0,0 +1,21 @@
|
||||
class My(val value: Int)
|
||||
|
||||
inline fun <T, R> T.performWithFinally(job: (T)-> R, finally: (T) -> R) : R {
|
||||
try {
|
||||
return job(this)
|
||||
} finally {
|
||||
return finally(this)
|
||||
}
|
||||
}
|
||||
|
||||
inline fun <T, R> T.performWithFailFinally(job: (T)-> R, failJob : (e: RuntimeException, T) -> R, finally: (T) -> R) : R {
|
||||
try {
|
||||
return job(this)
|
||||
} catch (e: RuntimeException) {
|
||||
return failJob(e, this)
|
||||
} finally {
|
||||
return finally(this)
|
||||
}
|
||||
}
|
||||
|
||||
inline fun String.toInt2() : Int = java.lang.Integer.parseInt(this)
|
||||
Reference in New Issue
Block a user