Is there a type with bigger capacity than u_long or UInt64 in Swift?
I have a function that takes very big integers to identify a credit card number with 28 digits:
func myFunc(number : /*What to put here?*/) {
//body
}
what type is appropriate? should number be treated as a string?