Say I have a record as such:
public record myRecord(double count = -1);
Instead, I want to make the parameter variable an array of size 3 with its elements defaulted to -1, as such:
public record myRecord(double[]? count = {-1, -1, -1});
How do I do that? The above code throws the error "Default parameter value for must be a compile-time constant"