Josh Cockrell
07/12/2022, 5:51 PMBool
Int
and Double
become KotlinBool
Int32
and KotlinDouble
Bool
, I need to put a .boolValue
on the end of it.
Or worse, if the method returns an object that has a Bool
property on it, I either need to convert the entire object manually
user = User(isAdmin: kotlinUser.isAdmin.boolValue)
to get rid of that KotlinBool
type. Or I need to give in and make my entire Swift codebase deal with a user object that has this KotlinBool
property on it.Nikolay Kasyanov
07/13/2022, 7:09 AMJosh Cockrell
07/13/2022, 2:26 PMInt32
and KotlinDouble
Nikolay Kasyanov
07/14/2022, 7:34 AMKotlinBoolean
and KotlinDouble
Int32
though – no solution that I know of)