If I have a method that looks like this:
def method(args: String*) = // something
And a sequence that looks like this:
val s = Seq("a", "b", "c")
How can I achieve the equivalent of this:
method(s)
If I have a method that looks like this:
def method(args: String*) = // something
And a sequence that looks like this:
val s = Seq("a", "b", "c")
How can I achieve the equivalent of this:
method(s)