Introduction XML and JSON are very typical text formats used to store data, designed to be more comfortable than plain old “csv” text and allowing hierarchical (parent -> child) relationships. However, even if there are many wonderful standard libraries to process them, there is still a speed problem when loading big quantities of data (say, […]
Category: Free
Generic Delphi Tree structure
A generic Tree structure made in Delphi is freely available at this GitHub repository: https://github.com/davidberneda/GenericTree See the readme at GitHub for details and updated documentation. This small class allows creating hierarchical structures where each “node” is a small object (20 bytes plus your own data size), containing a property of your desired type. For example, […]