Oxsomi / core3

Oxsomi Core3 is a combination of standalone C libraries useful for building applications, such as types, platform, graphics abstraction and file formats
GNU General Public License v3.0
0 stars 1 forks source link

Make TList(T) #135

Closed Nielsbishere closed 10 months ago

Nielsbishere commented 10 months ago

List is very annoying to use because it's just a buffer. TList(T) could wrap List functions to behave the exact same, just for the respective type. This can also help safeguard invalid typed lists from being passed to a different type list.

Basically: List is the generic executor that works for any list while TList is the type specific extension. It will create a type specifically for that typed list.