Example #1
0
File: ivl_io.hpp Project: iavr/drvq
void write(const array_2d <T>& a, std::ostream& s)
{
	write(a[0], s, a.length());
}
Example #2
0
File: ivl_io.hpp Project: iavr/drvq
void read(array_2d <T>& a, std::istream& s)
{
	read(a[0], s, a.length());
}