Mercurial > hg > octave-nkf
annotate liboctave/uint32NDArray.cc @ 8870:eea0e1b45ec0
optimize string manipulation in lookfor
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Wed, 25 Feb 2009 10:21:33 +0100 |
parents | b756ce0002db |
children | eb63fbe60fab |
rev | line source |
---|---|
4902 | 1 // N-D Array manipulations. |
2 /* | |
3 | |
7017 | 4 Copyright (C) 2004, 2005, 2006, 2007 John W. Eaton |
4902 | 5 |
6 This file is part of Octave. | |
7 | |
8 Octave is free software; you can redistribute it and/or modify it | |
9 under the terms of the GNU General Public License as published by the | |
7016 | 10 Free Software Foundation; either version 3 of the License, or (at your |
11 option) any later version. | |
4902 | 12 |
13 Octave is distributed in the hope that it will be useful, but WITHOUT | |
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
16 for more details. | |
17 | |
18 You should have received a copy of the GNU General Public License | |
7016 | 19 along with Octave; see the file COPYING. If not, see |
20 <http://www.gnu.org/licenses/>. | |
4902 | 21 |
22 */ | |
23 | |
24 #ifdef HAVE_CONFIG_H | |
25 #include <config.h> | |
26 #endif | |
27 | |
28 #include "uint32NDArray.h" | |
8774
b756ce0002db
split implementation and interface in mx-op-defs and MArray-defs
Jaroslav Hajek <highegg@gmail.com>
parents:
7189
diff
changeset
|
29 #include "mx-op-defs.h" |
4902 | 30 #include "intNDArray.cc" |
31 | |
6108 | 32 template class OCTAVE_API intNDArray<octave_uint32>; |
4902 | 33 |
6108 | 34 template OCTAVE_API |
4902 | 35 std::ostream& |
36 operator << (std::ostream& os, const intNDArray<octave_uint32>& a); | |
37 | |
6108 | 38 template OCTAVE_API |
4902 | 39 std::istream& |
40 operator >> (std::istream& is, intNDArray<octave_uint32>& a); | |
41 | |
42 NDS_CMP_OPS (uint32NDArray, , octave_uint32, ) | |
43 NDS_BOOL_OPS (uint32NDArray, octave_uint32, octave_uint32 (0)) | |
44 | |
45 SND_CMP_OPS (octave_uint32, , uint32NDArray, ) | |
46 SND_BOOL_OPS (octave_uint32, uint32NDArray, octave_uint32 (0)) | |
47 | |
48 NDND_CMP_OPS (uint32NDArray, , uint32NDArray, ) | |
49 NDND_BOOL_OPS (uint32NDArray, uint32NDArray, octave_uint32 (0)) | |
50 | |
7189 | 51 MINMAX_FCNS (uint32) |
52 | |
4902 | 53 /* |
54 ;;; Local Variables: *** | |
55 ;;; mode: C++ *** | |
56 ;;; End: *** | |
57 */ |