Raed Ghazal
inline fun <T> massAction(vararg objects: T, block: T.() -> Unit) {
objects.forEach {
block(it)
}