blob: 851c5560c833a99253c5733ad4fed66b91fa4f07 (
plain)
1
2
3
4
5
6
7
|
// version 14:
public record WithByOnRecordComponent(String a, String b) {
@java.lang.SuppressWarnings("all")
public WithByOnRecordComponent withABy(final java.util.function.Function<? super String, ? extends String> transformer) {
return new WithByOnRecordComponent(transformer.apply(this.a), this.b);
}
}
|