EnglishРусский  
The project is closed! You can look at a new scripting language. It is available on GitHub.
Also, try our open source cross-platform automation software.

Ads

Installer and installation software
Commercial and Freeware installers.

buf += type

Appending types to the buffer. Append buf to buf => buf += buf.

operator buf += (
   buf left,
   buf right
)

Return value

The result buffer.


buf += ubyte

Append ubyte to buf => buf += ubyte.

operator buf += (
   buf left,
   ubyte right
)

buf += uint

Append uint to buf => buf += uint.

operator buf += (
   buf left,
   uint right
)

buf += ushort

Append ushort to buf => buf += ushort.

operator buf += (
   buf left,
   ushort right
)

buf += ulong

Append ulong to buf => buf += ulong.

operator buf += (
   buf left,
   ulong right
)

Related links

Source