[swift-evolution] Splat

Brent Royal-Gordon brent at architechies.com
Wed Feb 10 19:41:23 CST 2016


> I'm curious what the type signature of the splat operator would be?

None of the options I present actually involves a standalone operator; even 3 is a magic syntax which happens to look like an operator. That's why you can use the splat without specifying a tuple to get a tuple-taking version of the function.

I *did* consider adding a fourth option, that of annotating parameters as converting n-ary functions to tuple-taking equivalents, but I didn't feel like I had a good enough idea of how that would work to really suggest it. Roughly, an `apply(_:to:)` function would look something like this:

	func apply<In, Out>(function: @splatting In -> Out, to params: In) -> Out {
		// `function` is of type `In -> Out`, where In is a tuple containing the types 
		// of the parameters of the function that was passed. Essentially, the generic system
		// implicitly wraps the function in a trampoline that takes a tuple of compatible arguments.
		return function(params)
	}

But this starts getting deep into type checker and generic system territory, which I don't understand well enough to feel comfortable proposing.

> If it can't, I have a strong preference against the options (#1 & #2) that look like normal function call syntax.  Because you won't be able to do several things that you're accustomed to with functions: assign them to variables, store them in containers, pass them as parameters to other functions.

I think this feature has to be able to make a first-class, tuple-taking closure, and all three alternatives I presented are intended to do that. That's what the second example for each syntax (the one where I map it over an array of tuples) is meant to show.

> This is less of a problem with explicit language syntax, because you could have a rule in the typechecker that says "If the expression being splatted is a tuple of type (A, B, x: C), then it must be applied to a function of type (A, B, C) -> Ret, with the result type of the call being Ret."  I think you can also get around many of the type inference pitfalls as well, because in most cases the types of the function and tuple are unlikely to need inferring (occasionally this will require explicit type annotations on tuple components, but it seems like most of the time they will have already been inferred when the tuple was declared).

As long as the splatting is explicit—that is, the parser can tell whether you're making a normal call or a tuple call—I don't think the overload resolution on a splatted version of a function is any more difficult than the non-splatted version. Possibly even easier, depending on how we handle default arguments.

> And it's much easier to do "partial splat" operations, where, for example, you may want to pass the first couple arguments of a function explicitly but splat the rest.

I haven't really considered how to do this kind of thing, but I think it's probably better represented by constructing a single tuple containing all of the arguments. I believe there was another thread recently that discussed tuple combining operators.

-- 
Brent Royal-Gordon
Architechies



More information about the swift-evolution mailing list