Skip to content

Instantly share code, notes, and snippets.

@humblerookie
Created July 18, 2020 15:36
Embed
What would you like to do?
Simple example delegate to another property.
class Vehicle {
var id: Int = 0
@Deprecated("Use 'id' instead", ReplaceWith("id"))
var vehicleId: Int by this::id
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment