First of all, I am not a big fan of removal of "++" operator. Still,
"+= 1" has the same performance with "++" but since I like the comfort of
writing just "++", I will just write an extension when Swift 3 will be
released. I know many people who will do the same.

On 23 March 2016 at 13:09, Tino Heth via swift-evolution <
[email protected]> wrote:

> I think that ++ and — should stay and MUST be implemented as faster
> operations than += and -=.
>
> If there is an easy way to make operations faster, imho that should be
> applied to every method ;-)
>
> Jokes apart, compilers of today know some really smart tricks, so if "+=
> 1" is slower than "++", I'd consider that a bug.
>
> _______________________________________________
> swift-evolution mailing list
> [email protected]
> https://lists.swift.org/mailman/listinfo/swift-evolution
>
>
_______________________________________________
swift-evolution mailing list
[email protected]
https://lists.swift.org/mailman/listinfo/swift-evolution

Reply via email to