ipso
ipso copied to clipboard
Field punning for record creation
Example:
let x = 1 in
let y = 2 in
let z = 3 in
{ x, y, z }
should desugar to:
let x = 1 in
let y = 2 in
let z = 3 in
{ x = x, y = y, z = z }
Bump; I found myself expecting this today.