📄 vecpickio.cc
字号:
/* * $Id: vecpickio.cc,v 1.3 2003/12/11 03:44:22 julianc Exp $ * * Copyright (C) 1997 Todd Veldhuizen <tveldhui@oonumerics.org> * All rights reserved. Please see <blitz/blitz.h> for terms and * conditions of use. * */#ifndef BZ_VECPICKIO_CC#define BZ_VECPICKIO_CC#ifndef BZ_VECPICK_H #error <blitz/vecpickio.cc> must be included via <blitz/vecpick.h>#endif // BZ_VECPICK_HBZ_NAMESPACE(blitz)template<typename P_numtype>ostream& operator<<(ostream& os, const VectorPick<P_numtype>& x){ Vector<P_numtype> y(x.length()); y = x; os << y; return os;}BZ_NAMESPACE_END#endif // BZ_VECPICKIO_CC
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -