Been bored, creating stuff on my days off work. For instance in say a matrix class, would you rather:
Have it so that when you call something like Matrix.Product(SomeOtherMatrix) it returns the result in a new matrix, or saves the result in the base type (the one that called the method) and returns the matrix?
Just wondering what you'd prefer.
Have it so that when you call something like Matrix.Product(SomeOtherMatrix) it returns the result in a new matrix, or saves the result in the base type (the one that called the method) and returns the matrix?
Just wondering what you'd prefer.