Alexis Bridoux

Results 10 comments of Alexis Bridoux

I found a short solution that works in our app by reading this thread. So in case it's useful for someone here it is: ```swift @propertyWrapper public struct NestedArray: Decodable...

For the missing library, I think I already face a similar issue. I will try to find out why it seems to be missing. For the linux release, I simply...

Alright the releases assets are now properly named. Thanks for the kind words by the way! I'll try to understand how to install the missing library on Linux

That's not a use case I had in mind to add a value, as Scout was primarily designed to change one single value at a time. Here, it's a group...

Regarding the conformance of the deserialised `Any`, I [filed a bug](https://bugs.swift.org/browse/SR-14281?jql=text%20~%20%22protocol%20any%20deserialisation%22) on bugs.swift.org.

Thank you! Someone answered to my issue. That's not a bug in fact. The thing is, with deserialisation, the `Any` value is a `NSArray` and not an `Array`. Which is...

I believe you are right, I cannot think of a use case where all values should be replayed. The feature I wanted to talk about was rather to "jump in...

@phausler I see that the multi-consumption was already discussed in a thread about `AsyncSequence`. Especially I wanted to share your words from [a response](https://forums.swift.org/t/should-asyncsequence-replace-combine-in-the-future-or-should-they-coexist/53370/10) here before asking my question: >...

I understand now that `AsyncSequence` approach is quite different from the Combine publishers. All your points make sense. I am left wondering if the best solution for now is to...

Hi! I just wrote a [tutorial](https://www.woodys-findings.com/posts/cocoa-implement-privileged-helper) about that if you are interested 😃