Skip to content

Instantly share code, notes, and snippets.

@truedem
Created November 13, 2018 21:53
Show Gist options
  • Save truedem/bc6d56d4031ef85cd8b79abfa530fcea to your computer and use it in GitHub Desktop.
Save truedem/bc6d56d4031ef85cd8b79abfa530fcea to your computer and use it in GitHub Desktop.
in-out Kotlin = super-extends Java
List<out T> is like List<? extends T> in Java
List<in T> is like List<? super T> in Java
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment