You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, calling instance methods doesn't work. To support, we need to rewrite providing the instance as the first parameter, e.g. (extending the example in #72):
publicstructSimpleConstructedStruct{publicreadonlyfloatOutFloat;publicSimpleConstructedStruct(floatoutFloat){OutFloat=outFloat;}publicSimpleConstructedStructIncrement(){returnnewSimpleConstructedStruct(OutFloat+1.0f);}}
...SimpleConstructedStruct s =newSimpleConstructedStruct(1.0f);s=s.SimpleConstructedStruct();
Currently, calling instance methods doesn't work. To support, we need to rewrite providing the instance as the first parameter, e.g. (extending the example in #72):
Should be written as:
The text was updated successfully, but these errors were encountered: