We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello
it could be useful to have methods that return a copy of record with particular numeric field (including BigDecimal) increased by a value.
BigDecimal
I.e. instead of this
import io.soabase.recordbuilder.core.RecordBuilder; @RecordBuilder public record MyRec(Long cnt) implements MyRecBuilder.With {} var r1 = new MyRec(10L); var r2 = r1.withCnt(r1.cnt() + 5);
One could write smth like this
var r2 = r1.incrCnt(5);
Basically all java operaators like += , -= etc could be generated, so one could write
+=
-=
r1.plusCnt(5); // += 5 r1.divCnt(5); // %= 5
etc
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello
it could be useful to have methods that return a copy of record with particular numeric field (including
BigDecimal
) increased by a value.I.e. instead of this
One could write smth like this
Basically all java operaators like
+=
,-=
etc could be generated, so one could writeetc
The text was updated successfully, but these errors were encountered: