My data-modeling Swift class is getting large. Can I put some functions for that class into a separate, plain Swift file and somehow include that file in my class, so that those functions are in the model class's namespace? Or do I have to put those extra functions into a class of their own and instantiate it within my model class?
"I want to define some methods for my class in a seperate file" is what class extensions are for.