Rémi Bardon

Results 97 comments of Rémi Bardon

Btw, I just realize I should add a security to avoid joining a networkgroup twice 💡 Edit: Reported in issue #459

CI has passed successfully 🥳 However I don't think CI builds for 3.2.0 yet 🥲 @judu Should I change the CI build versions?

As said on Slack, I had to duplicate a test suite for Scala 2 and Scala 3 because Circe doesn't give the same results in those two versions 🤦🏻‍♂️ I'm...

(If someone else merges this PR: please squash merge)

I just realized I forgot to add tests for `try AtLeast3([1,2])` for example, which, obviously, doesn't `throw` 🙈 I'll fix it tomorrow 🛠

Turns out it's quite easy to make `XCTAssertThrowsError(try AtLeast10(Array(1...9)))` pass, but I can't find a way to fix `XCTAssertThrowsError(try AtLeast10(AtLeast10(Array(1...19))))`.

No problem, I'm busy too 😉 I really tried to work around my problem, but I couldn't find a clever way to do it without storing more than the initial...

I finally made it! It works like a charm 🙂 The biggest issue, which I tried hours to avoid, but couldn't get around, is that I have to store one...

@stephencelis This PR is now ready 🙂

I found a bug, I'm fixing it. For some reason, `.drop10` can be called from an `AtLeast2`… which is super strange 🤔 ```swift fileprivate typealias AtLeast11 = NonEmpty extension AtLeast11...