null / nil in swift language
If you need to use a NULL at low level pointer operations, use the following:
UnsafePointer<Int8>.null()
Regarding equivalents:
NULL
has no equivalent in Swift.nil
is also callednil
in SwiftNil
has no equivalent in Swift[NSNull null]
can be accessed in Swift as NSNull()
Note: These are my guesses based on reading and play. Corrections welcome.
But nil/NULL handling in Swift is very different from Objective C. It looks designed to enforce safety and care. Read up on optionals in the manual. Generally speaking a variable can't be NULL at all and when you need to represent the "absence of a value" you do so declaratively.