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
All classes should have the follow two constructors:
///Does not consume the data///Data begins at d[0]CTOR(UByteArrayAdapter const & d, NoConsumeTag)
///Does consume the data///Data begins at d[0]///d is altered such that after completion of CTOR///d[0] points to one beyond the class data
CTOR(UByteArrayAdapter & d, ConsumeTag)
This makes it possible to write the following code:
All classes should have the follow two constructors:
This makes it possible to write the following code:
The text was updated successfully, but these errors were encountered: