Is there a syntax or function to copy a record, but with select fields populated with new values?For example, extending LYAH's Carlet stang67 = Car {company="Ford", model="Mustang", year=1967}let stang68 = stang67 `mutate` Car {year=1968}
let stang67 = Car {company="Ford", model="Mustang", year=1967}let stang68 = stang67 { year = 1968 }