checkIf

fun checkIf(condition: String): ActionCheckBuilder.ConditionWithoutRes<Self, Res, WrappedRes, Check>
inline fun checkIf(crossinline condition: (Session) -> Boolean): ActionCheckBuilder.ConditionWithoutRes<Self, Res, WrappedRes, Check>
fun checkIf(condition: Predicate<Session>): ActionCheckBuilder.ConditionWithoutRes<Self, Res, WrappedRes, Check>
inline fun checkIf(crossinline condition: (WrappedRes, Session) -> Boolean): ActionCheckBuilder.ConditionWithRes<Self, Res, WrappedRes, Check>
fun checkIf(condition: BiPredicate<WrappedRes, Session>): ActionCheckBuilder.ConditionWithRes<Self, Res, WrappedRes, Check>