📄 asexpr.h
字号:
// -*- C++ -*-/*************************************************************************** * blitz/array/asexpr.h Declaration of the asExpr helper functions * * Copyright (C) 1997-2001 Todd Veldhuizen <tveldhui@oonumerics.org> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * Suggestions: blitz-dev@oonumerics.org * Bugs: blitz-bugs@oonumerics.org * * For more information, please see the Blitz++ Home Page: * http://oonumerics.org/blitz/ * ***************************************************************************/#ifndef BZ_ARRAYASEXPR_H#define BZ_ARRAYASEXPR_H#ifndef BZ_ARRAY_H #error <blitz/array/asexpr.h> must be included via <blitz/array.h>#endifBZ_NAMESPACE(blitz)// The traits class asExpr converts arbitrary things to// expression templatable operands.// Default to scalar.template <typename T>struct asExpr { typedef _bz_ArrayExprConstant<T> T_expr; static T_expr getExpr(const T& x) { return T_expr(x); }};// Already an expression template termtemplate <typename T>struct asExpr<_bz_ArrayExpr<T> > { typedef _bz_ArrayExpr<T> T_expr; static const T_expr& getExpr(const T_expr& x) { return x; }};// An array operandtemplate <typename T,int N>struct asExpr<Array<T,N> > { typedef FastArrayIterator<T,N> T_expr; static T_expr getExpr(const Array<T,N>& x) { return x.beginFast(); }};// Index placeholdertemplate <int N>struct asExpr<IndexPlaceholder<N> > { typedef IndexPlaceholder<N> T_expr; static T_expr getExpr(T_expr x) { return x; }};#ifdef BZ_HAVE_TEMPLATES_AS_TEMPLATE_ARGUMENTS// A traits class that provides the return type of a binary operation.template <template <typename T1> class OP, typename O1>struct BzUnaryExprResult { typedef _bz_ArrayExpr<_bz_ArrayExprUnaryOp< typename asExpr<O1>::T_expr, OP<typename asExpr<O1>::T_expr::T_numtype> > > T_result;};template <template <typename T1, typename T2> class OP, typename O1, typename O2>struct BzBinaryExprResult { typedef _bz_ArrayExpr<_bz_ArrayExprBinaryOp< typename asExpr<O1>::T_expr, typename asExpr<O2>::T_expr, OP<typename asExpr<O1>::T_expr::T_numtype, typename asExpr<O2>::T_expr::T_numtype> > > T_result;};template <template <typename T1, typename T2, typename T3> class OP, typename O1, typename O2, typename O3>struct BzTernaryExprResult { typedef _bz_ArrayExpr<_bz_ArrayExprTernaryOp< typename asExpr<O1>::T_expr, typename asExpr<O2>::T_expr, typename asExpr<O3>::T_expr, OP<typename asExpr<O1>::T_expr::T_numtype, typename asExpr<O2>::T_expr::T_numtype, typename asExpr<O3>::T_expr::T_numtype> > > T_result;};#endif /* BZ_HAVE_TEMPLATES_AS_TEMPLATE_ARGUMENTS */BZ_NAMESPACE_END#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -