I found myself a couple of time in the case where,...
# getting-started
e
I found myself a couple of time in the case where, given a list of string, I want to drop everything until a specific line, including the line itself, that is
dropWhile { it != line }.drop(1)
Is there a better way to do this?