I migrated from swift 1.0 to swift 1.2 and I noticed that the bitwise NOT operator ( ~ ) not longer works in this simple exemple:
var open : Bool = false
open = ~open
'~' is unavailable use '!' operator instead
is it a new way to do now ? Any help would be greatly appreciated