Mercurial > hg > octave-nkf
annotate libinterp/operators/op-str-s.cc @ 19840:c5270263d466 gui-release
close gui-release branch
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Fri, 30 Jan 2015 17:41:50 -0500 |
parents | 175b392e91fe |
children | 4197fc428c7d |
rev | line source |
---|---|
4488 | 1 /* |
2 | |
17744
d63878346099
maint: Update copyright notices for release.
John W. Eaton <jwe@octave.org>
parents:
15195
diff
changeset
|
3 Copyright (C) 2003-2013 John W. Eaton |
4488 | 4 |
5 This file is part of Octave. | |
6 | |
7 Octave is free software; you can redistribute it and/or modify it | |
8 under the terms of the GNU General Public License as published by the | |
7016 | 9 Free Software Foundation; either version 3 of the License, or (at your |
10 option) any later version. | |
4488 | 11 |
12 Octave is distributed in the hope that it will be useful, but WITHOUT | |
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
15 for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
7016 | 18 along with Octave; see the file COPYING. If not, see |
19 <http://www.gnu.org/licenses/>. | |
4488 | 20 |
21 */ | |
22 | |
23 #ifdef HAVE_CONFIG_H | |
24 #include <config.h> | |
25 #endif | |
26 | |
27 #include "gripes.h" | |
28 #include "oct-obj.h" | |
29 #include "ov.h" | |
30 #include "ov-scalar.h" | |
31 #include "ov-str-mat.h" | |
32 #include "ov-typeinfo.h" | |
33 #include "ops.h" | |
34 | |
35 DEFASSIGNOP (assign, char_matrix_str, octave_scalar) | |
36 { | |
37 CAST_BINOP_ARGS (octave_char_matrix_str&, const octave_scalar&); | |
38 | |
5279 | 39 octave_value tmp |
40 = v2.convert_to_str_internal (false, false, | |
9931
fb6b6fcafa62
untabify files in src/OPERATORS directory
John W. Eaton <jwe@octave.org>
parents:
7017
diff
changeset
|
41 a1.is_sq_string () ? '\'' : '"'); |
4488 | 42 |
43 if (! error_state) | |
10852
47e013327758
fix bug in n-dimensional character assignment
Jaroslav Hajek <highegg@gmail.com>
parents:
9933
diff
changeset
|
44 v1.assign (idx, tmp.char_array_value ()); |
4488 | 45 |
46 return octave_value (); | |
47 } | |
48 | |
5533 | 49 DEFNDCHARCATOP_FN (str_s, char_matrix_str, scalar, concat) |
4915 | 50 |
5533 | 51 DEFNDCHARCATOP_FN (s_str, scalar, char_matrix_str, concat) |
4915 | 52 |
4488 | 53 void |
54 install_str_s_ops (void) | |
55 { | |
56 INSTALL_ASSIGNOP (op_asn_eq, octave_char_matrix_str, octave_scalar, assign); | |
17787
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
57 INSTALL_ASSIGNOP (op_asn_eq, octave_char_matrix_sq_str, octave_scalar, |
175b392e91fe
Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
58 assign); |
4915 | 59 |
60 INSTALL_CATOP (octave_char_matrix_str, octave_scalar, str_s); | |
5279 | 61 INSTALL_CATOP (octave_char_matrix_sq_str, octave_scalar, str_s); |
62 | |
4915 | 63 INSTALL_CATOP (octave_scalar, octave_char_matrix_str, s_str); |
5279 | 64 INSTALL_CATOP (octave_scalar, octave_char_matrix_sq_str, s_str); |
4488 | 65 } |