Closed chinedufn closed 1 year ago
This commit adds support for Option in extern "Swift" functions.
extern "Swift"
For example, the following is now possible:
mod ffi { extern "Swift" { fn my_func(arg: Option<u8>) -> Option<bool>; } }
Thanks!
This commit adds support for Option in
extern "Swift"
functions.For example, the following is now possible: