[swift-evolution] Can functions/methods be overloaded on mutability of parameters?

David Sweeris davesweeris at mac.com
Sat Jun 3 01:58:54 CDT 2017


> On Jun 2, 2017, at 22:29, Daryle Walker via swift-evolution <swift-evolution at swift.org> wrote:
> 
> Can I make two overloads such that one can take an argument from a “let”-mode object or a regular function parameter and return an UnsafePointer and then have the other take a “var”-mode object or inout function parameter and return an UnsafeMutablePointer? I think this can be done in C++.

Yeah, I think. Make the "var mode" version take an inout argument. You'll still be able to call the "let mode" version with a var, but you can't pass lets as an inout parameter.

- Dave Sweeris 


More information about the swift-evolution mailing list