Perfect amount of info to get your feet wet with implementations, recommending this clip to students. Very nice.
@AYVYN3 жыл бұрын
You could avoid casting so much by storing data in void** instead of a character array. void** data can be accessed by Vector->Data[ ] and then cast to any type by the user.
@Mashpoe3 жыл бұрын
I've actually improved the design of the vector a lot since I made this video. Now the user doesn't have to do any casting at all! You can check it out in the github repo, I might make a followup video someday...
@AdityaSharma-fp3de4 жыл бұрын
Thank you!
@yellows56858 күн бұрын
Very interesting I did this but I didn't realize characters were always just smallest data type so I had to use the mem copy which now I'm thinking about it is in the string library so probably just the same thing