Laurent Martelli
Laurent Martelli
I think this makes `AUTH_MODES.OAUTH` redundant, so I removed it but let `useOAuth2Client` for backward compatibility.
I've come up with the following workaround for `any()` : ```kotlin interface ValueClass { val value: T } @JvmInline value class UserId(override val value: UUID = randomUUID()) : ValueClass val...
This does not look like a seed size issue to me. If your random source is N bits, you can still generate random values of any M>N bits by concatenating...
> Hi, > > If the goal is to: > > > consider documents equal if the only difference is attributes order > > Why not make this a comparator...
> Would you like to rework your proposal so that it only makes the changes that are required to fix the problem and nothing more? Sure, I'll do that.
> > Would you like to rework your proposal so that it only makes the changes that are required to fix the problem and nothing more? > > Sure, I'll...
@wilkinsona is the new version OK ?
> @lmartelli do you want to review your contribution based on the suggestion above? If no, no problem and we can close this and reopen the related issue. Yes, I...
Maybe it would be better and more general to think in terms of difference : ```java valid = strings().ascii().ofMinLength(3).ofMaxLength(10) invalid = strings().difference(valid) ``` So that if for all x in...
I must confess, that although I have the intuition that it should be computable, I have no clue how to do it 😄