Skip to content

Instantly share code, notes, and snippets.

@psteiger
Last active June 30, 2019 17:11
Show Gist options
  • Select an option

  • Save psteiger/ed18d08ebf2d1f9cf90e8d608acea071 to your computer and use it in GitHub Desktop.

Select an option

Save psteiger/ed18d08ebf2d1f9cf90e8d608acea071 to your computer and use it in GitHub Desktop.
inline fun <reified T> DataSnapshot.getTypedValue(): T {
val genericTypeIndicator = object : GenericTypeIndicator<T>() {}
return getValue(genericTypeIndicator)!!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment