Skip to content

Instantly share code, notes, and snippets.

@markusdybeck
Last active June 10, 2020 12:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save markusdybeck/4f7bfa9be1ce4f78f2489d4dd9889fcc to your computer and use it in GitHub Desktop.
Save markusdybeck/4f7bfa9be1ce4f78f2489d4dd9889fcc to your computer and use it in GitHub Desktop.
Record with compact constructor
public record ProductId(long id){
public ProductId {
Require.that(id > 0);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment