This is a general array question but, for my case, it is a list of strings.
Given: [a, b, c, d, e, f, g, h] and an item inside of the collection, say f.
Output: [f, g, h, a, b, c, d, e]
I can use substring methods or things like .take and .skip. But are there any cleaner alternatives like using linq or something else I might be unaware of?
edit: Okay, I apologize that I did not write question correctly. When I say LINQ, I meant something involving lambda expressions? Thanks for your comments. I will just stick with take and skip.