jonvolfson / cs4500-api

0 stars 1 forks source link

Return type of get() #9

Closed NickSimmons97 closed 4 years ago

NickSimmons97 commented 4 years ago

The return type of get() is currently an Object. Could you change this to a type that can handle primitives, maybe a void?

jonvolfson commented 4 years ago

resolved. get() in the superclass returns void and subclasses return a pointer to the object it is meant for (Ex BoolArray returns bool)