/** ** KAI C++ Compiler ** ** Copyright (C) 1996-2001 Intel Corp. All rights reserved. **/ #ifndef __KAI_VALARRAY_H #define __KAI_VALARRAY_H #include using std::valarray; using std::slice; using std::slice_array; using std::gslice; using std::gslice_array; using std::mask_array; using std::indirect_array; using std::operator*; using std::operator/; using std::operator%; using std::operator+; using std::operator-; using std::operator^; using std::operator&; using std::operator|; using std::operator<<; using std::operator>>; using std::operator&&; using std::operator||; using std::operator==; using std::operator!=; using std::operator<; using std::operator>; using std::operator<=; using std::operator>=; using std::abs; using std::acos; using std::asin; using std::atan; using std::atan2; using std::cos; using std::cosh; using std::exp; using std::log; using std::log10; using std::pow; using std::sin; using std::sinh; using std::sqrt; using std::tan; using std::tanh; #endif /* __KAI_VALARRAY_H */