Alexander Cyon

Results 144 comments of Alexander Cyon

@mhammond in Swift `init?` (which corresponds to Rust `-> Option`) is called [*Failable Initializers*](https://docs.swift.org/swift-book/documentation/the-swift-programming-language/initialization/#Failable-Initializers) I think those are quite reasonable to have in uniffi! But even more important to get...

Ah seem like the macro `#[uniffi::constructor]` already supports this, and that we at RDX Works / Radix DLT are using it: https://github.com/radixdlt/radix-engine-toolkit/blob/main/crates/radix-engine-toolkit-uniffi/src/common/access_rules.rs#L27-L30 Only that it generates a `static func` rather...

@stasel Merry Christmas! Thanks your your prompt reply and thank you for [WebRTC SPM package](https://github.com/stasel/WebRTC), it is great! My question above was specifically about `localDataChannel` variable, [it is `private`](https://github.com/stasel/WebRTC-iOS/blob/main/WebRTC-Demo-App/Sources/Services/WebRTCClient.swift#L38) and...

I got this too in Sargon: https://github.com/radixdlt/sargon Never had an issue until some days ago, hmm...

I have this problem, preventing me from getting my well deserved 95% code coverage (reported ca 81%) 😬

I get this too, a lot.

~Still an issue using cocoapods 1.7~ Actually, the deletion worked, but I got a big error message even though it worked.

This is a nice addition! Without this Xcode selects `AsyncExtension` as active scheme because it starts with "A" instead of my host SPM project `Foo` which has a dependency on...

We really want to be able to configure if Swift Classes are `open` (`public`) **or final**. Being able to let classes be `final` is extremely powerful and important, since otherwise...