When enabled, some functional methods are added to the With nested
class.
E.g.
@RecordBuilder
record MyRecord<T>(String name, T value, int qty) implements MyRecordBuilder.With<T> {}
...
MyRecord<Thing> r = ...
var other = r.map((name, value, qty) -> new Other(...));
// also
r.accept((name, value, qty) -> {
...
});
When enabled, some functional methods are added to the
With
nested class.E.g.