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
For example for tink.Annex we have .get(TheType), but .get(TheType<Int>) doesn't work, but we can typedef TheIntType = TheType<Int>; then .get(TheIntType). This will be useful if TheType is generically built and produces distinct types at runtime.
The text was updated successfully, but these errors were encountered:
Basically this piece of code: https://github.com/haxetink/tink_json/blob/09c708c6cebfa47fd9165d9b6a380e077ff3f320/src/tink/json/macros/GenWriter.hx#L368-L379
For example for
tink.Annex
we have.get(TheType)
, but.get(TheType<Int>)
doesn't work, but we cantypedef TheIntType = TheType<Int>;
then.get(TheIntType)
. This will be useful ifTheType
is generically built and produces distinct types at runtime.The text was updated successfully, but these errors were encountered: