I have a function that requires a unichar parameter. But could not find a nice way to initialize a unichar in swift.
I am using the following way:
var delimitedBy:unichar = ("," as NSString).characterAtIndex(0)
Is there a better way to initialize a unichar in swift?