ashishkakkad.com
Use of Operator Overloading with Swift - Ashish Kakkad
I was just going through the Swift document and I found that Swift allow to overload the operator just like as C++ Language. Objective-C doesn’t allow to overload the operator. As swift document we can also say “Operator Functions”. Let’s Overload ^ (XOR Operator) to make Power of the value Function Prototype : Declare function ... Read more
Ashish Kakkad