Skip to content

Instantly share code, notes, and snippets.

@inamiy
Created September 27, 2014 04:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save inamiy/1cab6bcbe175290a346d to your computer and use it in GitHub Desktop.
Save inamiy/1cab6bcbe175290a346d to your computer and use it in GitHub Desktop.
Swiftのnilがなるほどわからん ref: http://qiita.com/inamiy/items/b186e9612352b31261df
let str: NSString? = nil
str?.length == 0 // false
str?.length > 0 // false
str?.length < 0 // true
nil == 0 // false
nil > 0 // false
nil < 0 // true
nil == true // false
nil == false // false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment