So according to the Swift Community I should adapt Kotlin and not Swift as
my choice for the programming language for a cross-platform GUI framework?
Is that really going to be easier than building a GUI framework for Android
as listed on this page?
https://github.com/apple/swift/blob/master/docs/
Hi,
Seems all core libs projects syntax highlighting is broken in Xcode8.
Anyone has a solution for this?
___
swift-users mailing list
swift-users@swift.org
https://lists.swift.org/mailman/listinfo/swift-users
Because the comparison function “==“ has the signature:
func ==(lhs: T?, rhs: T?) -> Bool
An optional parameter accepts non-optionals. In a sense non-optionals are
“promoted” to optionals when used for an optional parameter.
Rien.
> On 18 Oct 2016, at 10:58, Седых Александр via swift-users
>
> On 18 Oct 2016, at 09:58, Седых Александр via swift-users
> wrote:
>
> This code work:
>
> let one: Int? = 5
> let two = 5
> let result = one == two
>
> print(result)
>
> //print true
>
> Why we can access to Optional value without unwrap within comparison
> operations?
The 'one' valu
This code work:
let one: Int ? = 5
let two = 5
let result = one == two
print ( result )
//print true
Why we can access to Optional value without unwrap within comparison operations?
--
Седых Александр___
swift-users mailing list
swift-users@sw