comparison src/OPERATORS/op-str-str.cc @ 5073:e71be9c548f2

[project @ 2004-11-09 18:31:25 by jwe]
author jwe
date Tue, 09 Nov 2004 18:31:26 +0000
parents c638c144d4da
children 57077d0ddc8e
comparison
equal deleted inserted replaced
5072:97b62f0c1bee 5073:e71be9c548f2
117 return octave_value (); 117 return octave_value ();
118 } 118 }
119 119
120 DEFCATOP (str_str, char_matrix_str, char_matrix_str) 120 DEFCATOP (str_str, char_matrix_str, char_matrix_str)
121 { 121 {
122 CAST_BINOP_ARGS (const octave_char_matrix_str&, 122 CAST_BINOP_ARGS (octave_char_matrix_str&, const octave_char_matrix_str&);
123 const octave_char_matrix_str&); 123 return octave_value (v1.char_array_value (). concat (v2.char_array_value (),
124 return octave_value (concat (v1.char_array_value (), v2.char_array_value (),
125 ra_idx), true); 124 ra_idx), true);
126 } 125 }
127 126
128 void 127 void
129 install_str_str_ops (void) 128 install_str_str_ops (void)