Jamolkhon Khakimov
Results
2
comments of
Jamolkhon Khakimov
I'm pretty sure this is (now) supported. 1. x = leftOf { minOf(B.left(), C.left()) } 2. x = rightOf { maxOf(B.right(), C.right()) } 3. x = centerHorizontallyTo { XInt(abs(B.left().value -...
What's the point of having a UseCase interface/base class? What's wrong with a plain class like this: ``` class LoginUseCase @Inject constructor(private val loginService: LoginService) { fun login(username: String, password:...