Skip to content

Instantly share code, notes, and snippets.

@Hoegy
Last active May 22, 2021 19:56
Show Gist options
  • Save Hoegy/6e10a732dfc20b90421fa6e12466512d to your computer and use it in GitHub Desktop.
Save Hoegy/6e10a732dfc20b90421fa6e12466512d to your computer and use it in GitHub Desktop.
extension_function_example2.kt
interface LandVehicle
fun <T> T.cruiseTheBoulevard(): String where T: Vehicle, T: LandVehicle {
return "cruising the boulevard with my ${getMakeAndModel()}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment