Hello, I am learning odin for fun at the moment, and I am wondering if it is possible to add a new item to a function overload (as long as the function signature differs of course)
Here is basically what I mean:
delete_my_cool_data :: proc(data: MyCoolData) {
// ...
}
delete :: proc {
delete,
delete_my_cool_data,
}
I did a quick test, so I know it doesn’t work in this form, but I am wondering if there is any other way