Add DebugPrint for array.

This commit is contained in:
vng 2012-06-09 10:25:41 -07:00 committed by Alex Zolotarev
parent eedfce0f83
commit 3af0e02f4c

View file

@ -72,6 +72,11 @@ namespace my
}
}
template <typename T, size_t N> inline string DebugPrint(T (&arr) [N])
{
return ::my::impl::DebugPrintSequence(arr, arr + N);
}
template <typename T> inline string DebugPrint(vector<T> const & v)
{
return ::my::impl::DebugPrintSequence(v.begin(), v.end());