Re: find options
- Posted by jimcbrown (admin) Mar 15, 2009
- 969 views
SDPringle said...
What is meant by 'automatic cleaning up' of user defined types?
Shawn
Basically, a destructor.
A way to ensure a function gets called, so special types like maps, regexes, etc will get cleaned up automatically even if the user forgets to call regex:free() or map:delete() or etc. (This is a potential memory leak otherwise.)
This is being extended to UDTs in general.