summaryrefslogtreecommitdiff
path: root/vim/mySnippets/cpp.snippets
blob: 62c1faa60f31025608753dcd5f728324c27850ce (plain)
1
2
3
4
5
6
7
8
9
10
snippet print_mat "Print matrix" b
for (unsigned int iii = 0; iii < ${0:mat}.size(); ++iii) {
	cout << setw(12) << mat[iii][0];
	for (unsigned int jjj = 1; jjj < mat.size(); ++jjj) {
		cout << ", ";
		cout << setw(12) << mat[iii][jjj];
	}
	cout << endl;
}
endsnippet