avolkmann
09/06/2021, 5:31 PMEmil Kantis
09/06/2021, 5:37 PMTobias Berger
09/06/2021, 9:07 PMavolkmann
09/07/2021, 9:19 AMdarkmoon_uk
09/08/2021, 4:01 AMout
params.. I noticed though, that I always ended up refactoring them out again, because in the long term it never proved to be the simplest/most 'API ergonomic' solution... just an anecdote but there you go.val (r,g,b) = Color.fromHex("#FFBBAA")
elect
09/08/2021, 9:59 AMint initializeInMethod;
OutArgExample(::initializeInMethod);
Youssef Shoaib [MOD]
09/11/2021, 7:32 PM::initializeInMethod
example won't work because references to local variables aren't allowed yet. I'm thinking either ::variable.setter
could have better inlining, or maybe we could have some special syntax to refer to a setter of a propertyelect
09/12/2021, 9:40 AMJason5lee
09/27/2021, 8:02 AMTryBlahblah
methods. Nowaday you should just enable nullable check and return null (unfortunately Result<T, E>
is never easy to implemented because C# type inference is not the best).