Hullaballoonatic
Connection
private val Connection?.isUsable get() = this != null && !isClosed
David Cuesta
class Connection() { val isUsable: Boolean = true val isClosed: Boolean = true private val Connection.isUsable get() = !isClosed }
A modern programming language that makes developers happier.