annotate src/OPERATORS/op-int-concat.cc @ 7016:93c65f2a5668

[project @ 2007-10-12 06:40:56 by jwe]
author jwe
date Fri, 12 Oct 2007 06:41:26 +0000
parents 667ad2becb63
children a1dbe9d80eee
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
1 /*
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
2
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
3 Copyright (C) 2004 John W. Eaton
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
4
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
5 This file is part of Octave.
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
6
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
7 Octave is free software; you can redistribute it and/or modify it
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 5533
diff changeset
9 Free Software Foundation; either version 3 of the License, or (at your
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 5533
diff changeset
10 option) any later version.
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
11
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
12 Octave is distributed in the hope that it will be useful, but WITHOUT
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
15 for more details.
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
16
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 5533
diff changeset
18 along with Octave; see the file COPYING. If not, see
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 5533
diff changeset
19 <http://www.gnu.org/licenses/>.
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
20
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
21 */
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
22
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
23 #ifdef HAVE_CONFIG_H
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
24 #include <config.h>
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
25 #endif
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
26
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
27 #include "gripes.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
28 #include "oct-obj.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
29 #include "ov.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
30 #include "ov-int8.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
31 #include "ov-int16.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
32 #include "ov-int32.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
33 #include "ov-int64.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
34 #include "ov-uint8.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
35 #include "ov-uint16.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
36 #include "ov-uint32.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
37 #include "ov-uint64.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
38 #include "ov-range.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
39 #include "ov-bool.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
40 #include "ov-bool-mat.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
41 #include "ov-scalar.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
42 #include "ov-re-mat.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
43 #include "ov-str-mat.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
44 #include "ov-typeinfo.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
45 #include "op-int.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
46 #include "ops.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
47
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
48 // Concatentation of mixed integer types:
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
49
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
50 OCTAVE_CONCAT_FN2 (int8, int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
51 OCTAVE_CONCAT_FN2 (int8, int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
52 OCTAVE_CONCAT_FN2 (int8, int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
53
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
54 OCTAVE_CONCAT_FN2 (int8, uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
55 OCTAVE_CONCAT_FN2 (int8, uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
56 OCTAVE_CONCAT_FN2 (int8, uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
57 OCTAVE_CONCAT_FN2 (int8, uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
58
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
59 OCTAVE_CONCAT_FN2 (int16, int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
60 OCTAVE_CONCAT_FN2 (int16, int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
61 OCTAVE_CONCAT_FN2 (int16, int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
62
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
63 OCTAVE_CONCAT_FN2 (int16, uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
64 OCTAVE_CONCAT_FN2 (int16, uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
65 OCTAVE_CONCAT_FN2 (int16, uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
66 OCTAVE_CONCAT_FN2 (int16, uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
67
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
68 OCTAVE_CONCAT_FN2 (int32, int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
69 OCTAVE_CONCAT_FN2 (int32, int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
70 OCTAVE_CONCAT_FN2 (int32, int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
71
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
72 OCTAVE_CONCAT_FN2 (int32, uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
73 OCTAVE_CONCAT_FN2 (int32, uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
74 OCTAVE_CONCAT_FN2 (int32, uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
75 OCTAVE_CONCAT_FN2 (int32, uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
76
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
77 OCTAVE_CONCAT_FN2 (int64, int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
78 OCTAVE_CONCAT_FN2 (int64, int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
79 OCTAVE_CONCAT_FN2 (int64, int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
80
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
81 OCTAVE_CONCAT_FN2 (int64, uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
82 OCTAVE_CONCAT_FN2 (int64, uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
83 OCTAVE_CONCAT_FN2 (int64, uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
84 OCTAVE_CONCAT_FN2 (int64, uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
85
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
86 OCTAVE_CONCAT_FN2 (uint8, int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
87 OCTAVE_CONCAT_FN2 (uint8, int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
88 OCTAVE_CONCAT_FN2 (uint8, int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
89 OCTAVE_CONCAT_FN2 (uint8, int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
90
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
91 OCTAVE_CONCAT_FN2 (uint8, uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
92 OCTAVE_CONCAT_FN2 (uint8, uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
93 OCTAVE_CONCAT_FN2 (uint8, uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
94
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
95 OCTAVE_CONCAT_FN2 (uint16, int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
96 OCTAVE_CONCAT_FN2 (uint16, int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
97 OCTAVE_CONCAT_FN2 (uint16, int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
98 OCTAVE_CONCAT_FN2 (uint16, int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
99
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
100 OCTAVE_CONCAT_FN2 (uint16, uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
101 OCTAVE_CONCAT_FN2 (uint16, uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
102 OCTAVE_CONCAT_FN2 (uint16, uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
103
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
104 OCTAVE_CONCAT_FN2 (uint32, int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
105 OCTAVE_CONCAT_FN2 (uint32, int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
106 OCTAVE_CONCAT_FN2 (uint32, int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
107 OCTAVE_CONCAT_FN2 (uint32, int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
108
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
109 OCTAVE_CONCAT_FN2 (uint32, uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
110 OCTAVE_CONCAT_FN2 (uint32, uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
111 OCTAVE_CONCAT_FN2 (uint32, uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
112
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
113 OCTAVE_CONCAT_FN2 (uint64, int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
114 OCTAVE_CONCAT_FN2 (uint64, int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
115 OCTAVE_CONCAT_FN2 (uint64, int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
116 OCTAVE_CONCAT_FN2 (uint64, int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
117
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
118 OCTAVE_CONCAT_FN2 (uint64, uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
119 OCTAVE_CONCAT_FN2 (uint64, uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
120 OCTAVE_CONCAT_FN2 (uint64, uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
121
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
122 OCTAVE_INT_DOUBLE_CONCAT_FN (int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
123 OCTAVE_INT_DOUBLE_CONCAT_FN (int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
124 OCTAVE_INT_DOUBLE_CONCAT_FN (int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
125 OCTAVE_INT_DOUBLE_CONCAT_FN (int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
126
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
127 OCTAVE_INT_DOUBLE_CONCAT_FN (uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
128 OCTAVE_INT_DOUBLE_CONCAT_FN (uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
129 OCTAVE_INT_DOUBLE_CONCAT_FN (uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
130 OCTAVE_INT_DOUBLE_CONCAT_FN (uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
131
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
132 OCTAVE_DOUBLE_INT_CONCAT_FN (int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
133 OCTAVE_DOUBLE_INT_CONCAT_FN (int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
134 OCTAVE_DOUBLE_INT_CONCAT_FN (int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
135 OCTAVE_DOUBLE_INT_CONCAT_FN (int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
136
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
137 OCTAVE_DOUBLE_INT_CONCAT_FN (uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
138 OCTAVE_DOUBLE_INT_CONCAT_FN (uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
139 OCTAVE_DOUBLE_INT_CONCAT_FN (uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
140 OCTAVE_DOUBLE_INT_CONCAT_FN (uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
141
5533
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
142 OCTAVE_INT_CHAR_CONCAT_FN (int8)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
143 OCTAVE_INT_CHAR_CONCAT_FN (int16)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
144 OCTAVE_INT_CHAR_CONCAT_FN (int32)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
145 OCTAVE_INT_CHAR_CONCAT_FN (int64)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
146
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
147 OCTAVE_INT_CHAR_CONCAT_FN (uint8)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
148 OCTAVE_INT_CHAR_CONCAT_FN (uint16)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
149 OCTAVE_INT_CHAR_CONCAT_FN (uint32)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
150 OCTAVE_INT_CHAR_CONCAT_FN (uint64)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
151
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
152 OCTAVE_CHAR_INT_CONCAT_FN (int8)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
153 OCTAVE_CHAR_INT_CONCAT_FN (int16)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
154 OCTAVE_CHAR_INT_CONCAT_FN (int32)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
155 OCTAVE_CHAR_INT_CONCAT_FN (int64)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
156
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
157 OCTAVE_CHAR_INT_CONCAT_FN (uint8)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
158 OCTAVE_CHAR_INT_CONCAT_FN (uint16)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
159 OCTAVE_CHAR_INT_CONCAT_FN (uint32)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
160 OCTAVE_CHAR_INT_CONCAT_FN (uint64)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
161
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
162 void
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
163 install_int_concat_ops (void)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
164 {
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
165 OCTAVE_INSTALL_CONCAT_FN2 (int8, int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
166 OCTAVE_INSTALL_CONCAT_FN2 (int8, int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
167 OCTAVE_INSTALL_CONCAT_FN2 (int8, int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
168
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
169 OCTAVE_INSTALL_CONCAT_FN2 (int8, uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
170 OCTAVE_INSTALL_CONCAT_FN2 (int8, uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
171 OCTAVE_INSTALL_CONCAT_FN2 (int8, uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
172 OCTAVE_INSTALL_CONCAT_FN2 (int8, uint64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
173
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
174 OCTAVE_INSTALL_CONCAT_FN2 (int16, int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
175 OCTAVE_INSTALL_CONCAT_FN2 (int16, int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
176 OCTAVE_INSTALL_CONCAT_FN2 (int16, int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
177
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
178 OCTAVE_INSTALL_CONCAT_FN2 (int16, uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
179 OCTAVE_INSTALL_CONCAT_FN2 (int16, uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
180 OCTAVE_INSTALL_CONCAT_FN2 (int16, uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
181 OCTAVE_INSTALL_CONCAT_FN2 (int16, uint64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
182
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
183 OCTAVE_INSTALL_CONCAT_FN2 (int32, int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
184 OCTAVE_INSTALL_CONCAT_FN2 (int32, int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
185 OCTAVE_INSTALL_CONCAT_FN2 (int32, int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
186
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
187 OCTAVE_INSTALL_CONCAT_FN2 (int32, uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
188 OCTAVE_INSTALL_CONCAT_FN2 (int32, uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
189 OCTAVE_INSTALL_CONCAT_FN2 (int32, uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
190 OCTAVE_INSTALL_CONCAT_FN2 (int32, uint64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
191
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
192 OCTAVE_INSTALL_CONCAT_FN2 (int64, int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
193 OCTAVE_INSTALL_CONCAT_FN2 (int64, int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
194 OCTAVE_INSTALL_CONCAT_FN2 (int64, int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
195
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
196 OCTAVE_INSTALL_CONCAT_FN2 (int64, uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
197 OCTAVE_INSTALL_CONCAT_FN2 (int64, uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
198 OCTAVE_INSTALL_CONCAT_FN2 (int64, uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
199 OCTAVE_INSTALL_CONCAT_FN2 (int64, uint64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
200
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
201 OCTAVE_INSTALL_CONCAT_FN2 (uint8, int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
202 OCTAVE_INSTALL_CONCAT_FN2 (uint8, int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
203 OCTAVE_INSTALL_CONCAT_FN2 (uint8, int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
204 OCTAVE_INSTALL_CONCAT_FN2 (uint8, int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
205
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
206 OCTAVE_INSTALL_CONCAT_FN2 (uint8, uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
207 OCTAVE_INSTALL_CONCAT_FN2 (uint8, uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
208 OCTAVE_INSTALL_CONCAT_FN2 (uint8, uint64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
209
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
210 OCTAVE_INSTALL_CONCAT_FN2 (uint16, int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
211 OCTAVE_INSTALL_CONCAT_FN2 (uint16, int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
212 OCTAVE_INSTALL_CONCAT_FN2 (uint16, int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
213 OCTAVE_INSTALL_CONCAT_FN2 (uint16, int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
214
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
215 OCTAVE_INSTALL_CONCAT_FN2 (uint16, uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
216 OCTAVE_INSTALL_CONCAT_FN2 (uint16, uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
217 OCTAVE_INSTALL_CONCAT_FN2 (uint16, uint64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
218
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
219 OCTAVE_INSTALL_CONCAT_FN2 (uint32, int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
220 OCTAVE_INSTALL_CONCAT_FN2 (uint32, int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
221 OCTAVE_INSTALL_CONCAT_FN2 (uint32, int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
222 OCTAVE_INSTALL_CONCAT_FN2 (uint32, int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
223
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
224 OCTAVE_INSTALL_CONCAT_FN2 (uint32, uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
225 OCTAVE_INSTALL_CONCAT_FN2 (uint32, uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
226 OCTAVE_INSTALL_CONCAT_FN2 (uint32, uint64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
227
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
228 OCTAVE_INSTALL_CONCAT_FN2 (uint64, int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
229 OCTAVE_INSTALL_CONCAT_FN2 (uint64, int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
230 OCTAVE_INSTALL_CONCAT_FN2 (uint64, int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
231 OCTAVE_INSTALL_CONCAT_FN2 (uint64, int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
232
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
233 OCTAVE_INSTALL_CONCAT_FN2 (uint64, uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
234 OCTAVE_INSTALL_CONCAT_FN2 (uint64, uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
235 OCTAVE_INSTALL_CONCAT_FN2 (uint64, uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
236
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
237 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
238 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
239 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
240 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
241
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
242 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
243 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
244 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
245 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (uint64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
246
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
247 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
248 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
249 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
250 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
251
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
252 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
253 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
254 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
255 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (uint64);
5533
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
256
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
257 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (int8);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
258 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (int16);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
259 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (int32);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
260 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (int64);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
261
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
262 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (uint8);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
263 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (uint16);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
264 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (uint32);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
265 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (uint64);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
266
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
267 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (int8);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
268 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (int16);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
269 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (int32);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
270 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (int64);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
271
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
272 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (uint8);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
273 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (uint16);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
274 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (uint32);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
275 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (uint64);
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
276 }
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
277
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
278 /*
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
279 ;;; Local Variables: ***
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
280 ;;; mode: C++ ***
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
281 ;;; End: ***
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
282 */