Re: [swift-users] Removed discussions in doc for Swift 4. Why?

2017-06-12 Thread Jens Persson via swift-users
"Removed discussion of variable function arguments and the special syntax for curried functions." On Mon, Jun 12, 2017 at 10:02 PM, tuuranton--- via swift-users < swift-users@swift.org> wrote: > > Austin Zheng wrote: > > > I'm not aware, though, of any proposal in the pipeline to remove variadic

Re: [swift-users] Removed discussions in doc for Swift 4. Why?

2017-06-12 Thread Jens Persson via swift-users
That is, "variable" not "variadic" function arguments. func foo(var a: Int) { ... } is no longer valid, the parameter may not have the var specifier anymore. On Mon, Jun 12, 2017 at 10:24 PM, Jens Persson wrote: > "Removed discussion of variable function arguments and the

Re: [swift-users] Removed discussions in doc for Swift 4. Why?

2017-06-12 Thread tuuranton--- via swift-users
> Austin Zheng wrote: > I'm not aware, though, of any proposal in the pipeline to remove > variadicarguments, so it's not clear why the book should have removed > discussionabout them. Yes, this is a real mystery. > On Jun 12, 2017, at 12:37 PM, Austin Zheng via swift-users swift.org>

Re: [swift-users] Removed discussions in doc for Swift 4. Why?

2017-06-12 Thread Erica Sadun via swift-users
`var` arguments were also removed -- E > On Jun 12, 2017, at 12:37 PM, Austin Zheng via swift-users > wrote: > > The currying syntax was removed in Swift 3 (see > https://github.com/apple/swift-evolution/blob/master/proposals/0002-remove-currying.md > >

Re: [swift-users] There is a way to see pending features or discussions in complexity order?

2017-06-12 Thread Mariano Cornejo Herrera via swift-users
Cool, thanks! That's what I talking about Greetings On Mon, Jun 12, 2017 at 1:35 PM Austin Zheng wrote: > Hi Mariano, > > If you want to contribute, you should create an account at the bug tracker > at https://bugs.swift.org/. You can then look for bugs marked with the >

Re: [swift-users] Removed discussions in doc for Swift 4. Why?

2017-06-12 Thread Austin Zheng via swift-users
The currying syntax was removed in Swift 3 (see https://github.com/apple/swift-evolution/blob/master/proposals/0002-remove-currying.md). I'm not aware, though, of any proposal in the pipeline to remove variadic arguments, so it's not clear why the book should have removed discussion about them.

Re: [swift-users] There is a way to see pending features or discussions in complexity order?

2017-06-12 Thread Austin Zheng via swift-users
Hi Mariano, If you want to contribute, you should create an account at the bug tracker at https://bugs.swift.org/. You can then look for bugs marked with the `StarterBug` tag, which are simple tasks or enhancements that are explicitly called out as appropriate for new contributors. If you just

Re: [swift-users] There is a way to see pending features or discussions in complexity order?

2017-06-12 Thread Mariano Cornejo Herrera via swift-users
Of course but I'm new in language development so I want to start from less complex stuff, learn and then help with more complex stuff, that's why I want to know if there is a place where all the pending features are ordered according to the complexity On Mon, Jun 12, 2017 at 12:08 PM Quinn "The

Re: [swift-users] There is a way to see pending features or discussions in complexity order?

2017-06-12 Thread Quinn "The Eskimo!" via swift-users
On 11 Jun 2017, at 09:02, Mariano Cornejo Herrera via swift-users wrote: > There is a way to see pending features or discussions in complexity order? I’m not sure what you’re asking for here. Are you looking for some way to contribute to the Swift open source efforts?

[swift-users] How to write a test against fixture resources from generated xcodeproj test bundle?

2017-06-12 Thread Toshihiro Suzuki via swift-users
Hi Swift Community, I'm Toshihiro Suzuki and have a question about Swift Package Manager. I'm trying out with new Xcode9-beta. When I generate a new xcodeproj like this, `Resources` directory is imported as a folder reference in xcodeproj. ``` $ swift -version Apple Swift version 4.0