internaltools.h
来自「cint...昨天看到有个c++解释器,叫CINT,down下来一用,很爽,推荐」· C头文件 代码 · 共 54 行
H
54 行
// @(#)root/reflex:$Name: $:$Id: InternalTools.h,v 1.5 2006/08/28 16:03:54 roiser Exp $// Author: Stefan Roiser 2006// Copyright CERN, CH-1211 Geneva 23, 2004-2006, All rights reserved.//// Permission to use, copy, modify, and distribute this software for any// purpose is hereby granted without fee, provided that this copyright and// permissions notice appear in all copies and derivatives.//// This software is provided "as is" without express or implied warranty.// Include Filesnamespace ROOT { namespace Reflex { namespace OTools { template< typename TO > class ToIter { public: template < typename CONT > static typename std::vector<TO>::iterator Begin( const CONT & cont ) { if ( ! cont.size()) return End<CONT>(cont); else return typename std::vector<TO>::iterator((TO*)&cont[0]); } template < typename CONT > static typename std::vector<TO>::iterator End( const CONT & cont ) { typename std::vector<TO>::iterator it = typename std::vector<TO>::iterator((TO*)&cont[cont.size()-1]); return it++; } template < typename CONT > static typename std::vector<TO>::const_reverse_iterator RBegin( const CONT & cont ) { if ( ! cont.size()) return REnd<CONT>(cont); else return typename std::vector<TO>::const_reverse_iterator(typename std::vector<TO>::iterator((TO*)&cont[cont.size()-1])); } template < typename CONT > static typename std::vector<TO>::const_reverse_iterator REnd( const CONT & cont ) { typename std::vector<TO>::iterator it = typename std::vector<TO>::iterator((TO*)&cont[0]); return typename std::vector<TO>::const_reverse_iterator(it--); } }; } // namespace OTools } // namespace Reflex} // namespace ROOT
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?