Created
May 14, 2020 11:27
-
-
Save AshuTyagi16/a8d6af6f391ee8b1c2afaaa0a3b36370 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
inline fun <reified T : RecyclerView.ViewHolder> RecyclerView.forEachVisibleHolder( | |
action: (T) -> Unit | |
) { | |
for (i in 0 until childCount) { | |
action(getChildViewHolder(getChildAt(i)) as T) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment