Re: [go-nuts] LHS inference for type assertions (Pre proposal discussion)

2023-05-20 Thread Dexter Plameras
My apologies, So as to not waste your time or anybody else's, I'll follow the proposal headings in the (proposal/.../TEMPLATE.md), and post here. On Sunday, 21 May 2023 at 07:23:22 UTC+10 Ian Lance Taylor wrote: > On Sat, May 20, 2023 at 1:17 PM Dexter Plameras wrote: >

[go-nuts] LHS inference for type assertions (Pre proposal discussion)

2023-05-20 Thread Dexter Plameras
Greetings, As per the requirement before putting together a proposal, a discussion on LHS inference for type assertions Currently, type assertions take the form of: // // Pre assertion // var original string = "Hello Type Assertions" var data interface{} = original // or "var data any" // // A