collections - Scala: List drop first n empty items -


i have list:

val arr = array("", "", "a", "b", "") 

i want apply method on arr, such output is:

array("a", "b", "") 

it's just

arr.dropwhile(_.isempty) 

Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

javascript - Get parameter of GET request -

javascript - Twitter Bootstrap - how to add some more margin between tooltip popup and element -