Are all of the below declarations the same? If so, what is the standard way to declare a constant function?
const SparseMatrix transpose(); SparseMatrix transpo
1) return a const value 2) const function, no member changes inside it 3) 1)+2)