Skip to content

Bitwise API & anonymous struct improved

Compare
Choose a tag to compare
@kurapica kurapica released this 14 Aug 03:39
· 240 commits to master since this release

[1.6.11] - 2020-08-14 WangXH [email protected]

Changed

  • The anonymous array & hash struct type with only type settings like struct { Number } and struct { [String] = Number } will be auto sealed and unique, so the system won't generate multi struct types for the same types.
  • The lshift,rshift,band,bor,bnot,bxor api is added in the System.Toolset, they are generated based on the platform.

[1.6.10] - 2020-08-11 WangXH [email protected]

Changed

  • Fix The __AutoCache__ attribute for multi thread platform, the result may only be cached when the code processe in the same context and the debug.getgetlocal API is provided.

[1.6.9] - 2020-07-26 WangXH [email protected]

Changed

  • The __AutoCache__ attribute can be used on method or functions, so the results will be cached for arguments, the func will return the cached value with the same arguments.