commonMain.com.saveourtool.save.utils.RoleUtils.kt Maven / Gradle / Ivy
The newest version!
/**
* Utilities of Role entity
*/
package com.saveourtool.save.utils
import com.saveourtool.save.domain.Role
/**
* @param oneRole
* @param anotherRole
* @return [Role] that has higher priority
*/
fun getHighestRole(oneRole: Role?, anotherRole: Role?): Role =
listOf(oneRole ?: Role.NONE, anotherRole ?: Role.NONE).maxByOrNull { it.priority }!!
© 2015 - 2025 Weber Informatics LLC | Privacy Policy