Kevin Cador

Results 5 comments of Kevin Cador

@jpsim @finnschiermer giving my 2 cents: we already use `compact()` (by modifying headers to make it available in Swift) in a production app. We call it at every launch. It's...

Nice @Daniel1of1 ! I have an app in prod since Dec. using the solution I proposed quite extensively. But to be honest my implementation was more a guess found by...

Yes, I'm using Receiver in production since 1.0 of Rippple (https://itunes.apple.com/us/app/rippple-tv-movie-comments/id1309894528) launched in early 2018.

I think I identified the issue. It's when a key needs to be generated to store the handler: `_key = (_handlers.keys.map { $0.hashValue }.max() ?? -1) + 1` It seems...

It works as expected when removing the `hashValue`: `_key = (_handlers.keys.max() ?? -1) + 1` I don't really understand why this `hashValue` is important. Let me know if I can...