annotate libinterp/octave-value/ov.h @ 33634:4a70f390c85e default tip @

maint: Merge stable to default.
author Markus Mützel <markus.muetzel@gmx.de>
date Tue, 28 May 2024 15:25:54 +0200
parents 5fded8395daa
children 662938d6b684
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
27923
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
1 ////////////////////////////////////////////////////////////////////////
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
2 //
32632
2e484f9f1f18 maint: update Octave Project Developers copyright for the new year
John W. Eaton <jwe@octave.org>
parents: 32546
diff changeset
3 // Copyright (C) 1996-2024 The Octave Project Developers
27923
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
4 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
5 // See the file COPYRIGHT.md in the top-level directory of this
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
6 // distribution or <https://octave.org/copyright/>.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
7 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
8 // This file is part of Octave.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
9 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
10 // Octave is free software: you can redistribute it and/or modify it
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
11 // under the terms of the GNU General Public License as published by
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
12 // the Free Software Foundation, either version 3 of the License, or
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
13 // (at your option) any later version.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
14 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
15 // Octave is distributed in the hope that it will be useful, but
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
16 // WITHOUT ANY WARRANTY; without even the implied warranty of
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
18 // GNU General Public License for more details.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
19 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
20 // You should have received a copy of the GNU General Public License
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
21 // along with Octave; see the file COPYING. If not, see
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
22 // <https://www.gnu.org/licenses/>.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
23 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
24 ////////////////////////////////////////////////////////////////////////
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
25
20791
f7084eae3318 maint: Use Octave coding conventions for #if statements.
Rik <rik@octave.org>
parents: 20768
diff changeset
26 #if ! defined (octave_ov_h)
17822
ebb3ef964372 maint: Use common #define syntax "octave_filename_h" in h_files.
Rik <rik@octave.org>
parents: 17787
diff changeset
27 #define octave_ov_h 1
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
28
21244
1473547f50f5 include octave-config.h in public header files
John W. Eaton <jwe@octave.org>
parents: 21139
diff changeset
29 #include "octave-config.h"
1473547f50f5 include octave-config.h in public header files
John W. Eaton <jwe@octave.org>
parents: 21139
diff changeset
30
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
31 #include <cstdlib>
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
32
8950
d865363208d6 include <iosfwd> instead of <iostream> in header files
John W. Eaton <jwe@octave.org>
parents: 8920
diff changeset
33 #include <iosfwd>
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
34 #include <string>
4219
23d06c9e1edd [project @ 2002-12-06 21:29:17 by jwe]
jwe
parents: 4192
diff changeset
35 #include <list>
29476
c74ff452e2bb avoid memory leaks when returning handles to nested functions
John W. Eaton <jwe@octave.org>
parents: 29358
diff changeset
36 #include <memory>
23678
dcba41788495 new struct/map constructors
John W. Eaton <jwe@octave.org>
parents: 23615
diff changeset
37 #include <map>
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
38
33244
08ab46f6e241 replace uses of assert with panic_impossible in ov.h
John W. Eaton <jwe@octave.org>
parents: 32838
diff changeset
39 #include "panic.h"
08ab46f6e241 replace uses of assert with panic_impossible in ov.h
John W. Eaton <jwe@octave.org>
parents: 32838
diff changeset
40
5828
22e23bee74c8 [project @ 2006-05-23 06:05:14 by jwe]
jwe
parents: 5785
diff changeset
41 #include "data-conv.h"
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
42 #include "idx-vector.h"
5828
22e23bee74c8 [project @ 2006-05-23 06:05:14 by jwe]
jwe
parents: 5785
diff changeset
43 #include "mach-info.h"
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
44 #include "mx-base.h"
23059
b98ebcd7f11c move some octave stream classes into octave namespace
John W. Eaton <jwe@octave.org>
parents: 22755
diff changeset
45 #include "oct-sort.h"
4254
df5f2e433a11 [project @ 2002-12-31 19:43:07 by jwe]
jwe
parents: 4252
diff changeset
46 #include "oct-time.h"
2942
026f342c2019 [project @ 1997-05-08 02:20:57 by jwe]
jwe
parents: 2916
diff changeset
47 #include "str-vec.h"
026f342c2019 [project @ 1997-05-08 02:20:57 by jwe]
jwe
parents: 2916
diff changeset
48
31605
e88a07dec498 maint: Use macros to begin/end C++ namespaces.
Rik <rik@octave.org>
parents: 31260
diff changeset
49 OCTAVE_BEGIN_NAMESPACE(octave)
29960
939bef0b66e0 merge "namespace octave" and OCTAVE_NAMESPACE_BEGIN/END blocks
John W. Eaton <jwe@octave.org>
parents: 29954
diff changeset
50
31607
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
51 class stack_frame;
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
52 class type_info;
32531
435cfe35e3c6 disable building bytecode evaluator by default (bug #64977)
John W. Eaton <jwe@octave.org>
parents: 32511
diff changeset
53 class scope_stack_frame;
435cfe35e3c6 disable building bytecode evaluator by default (bug #64977)
John W. Eaton <jwe@octave.org>
parents: 32511
diff changeset
54 class base_value_stack_frame;
435cfe35e3c6 disable building bytecode evaluator by default (bug #64977)
John W. Eaton <jwe@octave.org>
parents: 32511
diff changeset
55
31605
e88a07dec498 maint: Use macros to begin/end C++ namespaces.
Rik <rik@octave.org>
parents: 31260
diff changeset
56 OCTAVE_END_NAMESPACE(octave)
24540
46440078d73b don't use singleton for octave_value_typeinfo
John W. Eaton <jwe@octave.org>
parents: 24534
diff changeset
57
3351
8623649c967c [project @ 1999-11-15 16:17:01 by jwe]
jwe
parents: 3340
diff changeset
58 class Cell;
24668
d4dd741b2794 new octave_value functions for formatting output
John W. Eaton <jwe@octave.org>
parents: 24643
diff changeset
59 class float_format;
15149
62a35ae7d6a2 use forward decls for mxArray in ov.h and ov-base.h
John W. Eaton <jwe@octave.org>
parents: 15140
diff changeset
60 class mxArray;
10742
604e13a89c7f initial code for structs rewrite
Jaroslav Hajek <highegg@gmail.com>
parents: 10670
diff changeset
61 class octave_map;
604e13a89c7f initial code for structs rewrite
Jaroslav Hajek <highegg@gmail.com>
parents: 10670
diff changeset
62 class octave_scalar_map;
2974
ebbc34ff7f66 [project @ 1997-05-15 19:36:16 by jwe]
jwe
parents: 2963
diff changeset
63 class octave_function;
4700
ca3a1d687bba [project @ 2004-01-21 03:28:31 by jwe]
jwe
parents: 4687
diff changeset
64 class octave_user_function;
4342
813effe14ee1 [project @ 2003-02-20 08:35:55 by jwe]
jwe
parents: 4271
diff changeset
65 class octave_fcn_handle;
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
66 class octave_value_list;
32131
fbadf4ce94c7 function cache to improve performance of function resolution
Petter T. <petter.vilhelm@gmail.com>
parents: 32130
diff changeset
67 class octave_fcn_cache;
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
68
28123
4963f23b145c move mex type definitions to separate file
John W. Eaton <jwe@octave.org>
parents: 27923
diff changeset
69 #include "mxtypes.h"
4963f23b145c move mex type definitions to separate file
John W. Eaton <jwe@octave.org>
parents: 27923
diff changeset
70
23059
b98ebcd7f11c move some octave stream classes into octave namespace
John W. Eaton <jwe@octave.org>
parents: 22755
diff changeset
71 #include "oct-stream.h"
5759
ce79d238f142 [project @ 2006-04-13 13:04:32 by jwe]
jwe
parents: 5758
diff changeset
72 #include "ov-base.h"
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
73
32628
ae4e19c0a2b1 maint: Place class name and class keyword on one line.
Rik <rik@octave.org>
parents: 32546
diff changeset
74 class OCTINTERP_API octave_value
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
75 {
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
76 public:
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
77
3203
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 3202
diff changeset
78 enum unary_op
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 3202
diff changeset
79 {
6518
952c8b00525e [project @ 2007-04-11 20:50:22 by jwe]
jwe
parents: 6338
diff changeset
80 op_not, // not
952c8b00525e [project @ 2007-04-11 20:50:22 by jwe]
jwe
parents: 6338
diff changeset
81 op_uplus, // uplus
952c8b00525e [project @ 2007-04-11 20:50:22 by jwe]
jwe
parents: 6338
diff changeset
82 op_uminus, // uminus
952c8b00525e [project @ 2007-04-11 20:50:22 by jwe]
jwe
parents: 6338
diff changeset
83 op_transpose, // transpose
952c8b00525e [project @ 2007-04-11 20:50:22 by jwe]
jwe
parents: 6338
diff changeset
84 op_hermitian, // ctranspose
3525
6cfa474c5b99 [project @ 2000-02-02 10:48:41 by jwe]
jwe
parents: 3523
diff changeset
85 op_incr,
6cfa474c5b99 [project @ 2000-02-02 10:48:41 by jwe]
jwe
parents: 3523
diff changeset
86 op_decr,
3203
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 3202
diff changeset
87 num_unary_ops,
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 3202
diff changeset
88 unknown_unary_op
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 3202
diff changeset
89 };
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 3202
diff changeset
90
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
91 enum binary_op
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
92 {
6518
952c8b00525e [project @ 2007-04-11 20:50:22 by jwe]
jwe
parents: 6338
diff changeset
93 op_add, // plus
952c8b00525e [project @ 2007-04-11 20:50:22 by jwe]
jwe
parents: 6338
diff changeset
94 op_sub, // minus
952c8b00525e [project @ 2007-04-11 20:50:22 by jwe]
jwe
parents: 6338
diff changeset
95 op_mul, // mtimes
952c8b00525e [project @ 2007-04-11 20:50:22 by jwe]
jwe
parents: 6338
diff changeset
96 op_div, // mrdivide
952c8b00525e [project @ 2007-04-11 20:50:22 by jwe]
jwe
parents: 6338
diff changeset
97 op_pow, // mpower
952c8b00525e [project @ 2007-04-11 20:50:22 by jwe]
jwe
parents: 6338
diff changeset
98 op_ldiv, // mldivide
952c8b00525e [project @ 2007-04-11 20:50:22 by jwe]
jwe
parents: 6338
diff changeset
99 op_lt, // lt
952c8b00525e [project @ 2007-04-11 20:50:22 by jwe]
jwe
parents: 6338
diff changeset
100 op_le, // le
952c8b00525e [project @ 2007-04-11 20:50:22 by jwe]
jwe
parents: 6338
diff changeset
101 op_eq, // eq
952c8b00525e [project @ 2007-04-11 20:50:22 by jwe]
jwe
parents: 6338
diff changeset
102 op_ge, // ge
952c8b00525e [project @ 2007-04-11 20:50:22 by jwe]
jwe
parents: 6338
diff changeset
103 op_gt, // gt
952c8b00525e [project @ 2007-04-11 20:50:22 by jwe]
jwe
parents: 6338
diff changeset
104 op_ne, // ne
952c8b00525e [project @ 2007-04-11 20:50:22 by jwe]
jwe
parents: 6338
diff changeset
105 op_el_mul, // times
952c8b00525e [project @ 2007-04-11 20:50:22 by jwe]
jwe
parents: 6338
diff changeset
106 op_el_div, // rdivide
952c8b00525e [project @ 2007-04-11 20:50:22 by jwe]
jwe
parents: 6338
diff changeset
107 op_el_pow, // power
952c8b00525e [project @ 2007-04-11 20:50:22 by jwe]
jwe
parents: 6338
diff changeset
108 op_el_ldiv, // ldivide
952c8b00525e [project @ 2007-04-11 20:50:22 by jwe]
jwe
parents: 6338
diff changeset
109 op_el_and, // and
952c8b00525e [project @ 2007-04-11 20:50:22 by jwe]
jwe
parents: 6338
diff changeset
110 op_el_or, // or
3525
6cfa474c5b99 [project @ 2000-02-02 10:48:41 by jwe]
jwe
parents: 3523
diff changeset
111 op_struct_ref,
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
112 num_binary_ops,
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
113 unknown_binary_op
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
114 };
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
115
7800
5861b95e9879 support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents: 7789
diff changeset
116 enum compound_binary_op
5861b95e9879 support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents: 7789
diff changeset
117 {
5861b95e9879 support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents: 7789
diff changeset
118 // ** compound operations **
11586
12df7854fa7c strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
119 op_trans_mul,
7800
5861b95e9879 support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents: 7789
diff changeset
120 op_mul_trans,
11586
12df7854fa7c strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
121 op_herm_mul,
7800
5861b95e9879 support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents: 7789
diff changeset
122 op_mul_herm,
9661
afcf852256d2 optimize / and '\ for triangular matrices
Jaroslav Hajek <highegg@gmail.com>
parents: 9657
diff changeset
123 op_trans_ldiv,
afcf852256d2 optimize / and '\ for triangular matrices
Jaroslav Hajek <highegg@gmail.com>
parents: 9657
diff changeset
124 op_herm_ldiv,
8982
dc6bda6f9994 implement compound logical ops
Jaroslav Hajek <highegg@gmail.com>
parents: 8960
diff changeset
125 op_el_not_and,
dc6bda6f9994 implement compound logical ops
Jaroslav Hajek <highegg@gmail.com>
parents: 8960
diff changeset
126 op_el_not_or,
dc6bda6f9994 implement compound logical ops
Jaroslav Hajek <highegg@gmail.com>
parents: 8960
diff changeset
127 op_el_and_not,
dc6bda6f9994 implement compound logical ops
Jaroslav Hajek <highegg@gmail.com>
parents: 8960
diff changeset
128 op_el_or_not,
7800
5861b95e9879 support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents: 7789
diff changeset
129 num_compound_binary_ops,
5861b95e9879 support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents: 7789
diff changeset
130 unknown_compound_binary_op
5861b95e9879 support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents: 7789
diff changeset
131 };
5861b95e9879 support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents: 7789
diff changeset
132
2880
0a076230ca87 [project @ 1997-04-24 09:47:41 by jwe]
jwe
parents: 2847
diff changeset
133 enum assign_op
0a076230ca87 [project @ 1997-04-24 09:47:41 by jwe]
jwe
parents: 2847
diff changeset
134 {
3525
6cfa474c5b99 [project @ 2000-02-02 10:48:41 by jwe]
jwe
parents: 3523
diff changeset
135 op_asn_eq,
6cfa474c5b99 [project @ 2000-02-02 10:48:41 by jwe]
jwe
parents: 3523
diff changeset
136 op_add_eq,
6cfa474c5b99 [project @ 2000-02-02 10:48:41 by jwe]
jwe
parents: 3523
diff changeset
137 op_sub_eq,
6cfa474c5b99 [project @ 2000-02-02 10:48:41 by jwe]
jwe
parents: 3523
diff changeset
138 op_mul_eq,
6cfa474c5b99 [project @ 2000-02-02 10:48:41 by jwe]
jwe
parents: 3523
diff changeset
139 op_div_eq,
6cfa474c5b99 [project @ 2000-02-02 10:48:41 by jwe]
jwe
parents: 3523
diff changeset
140 op_ldiv_eq,
4018
a8621d87fbf5 [project @ 2002-08-05 03:17:25 by jwe]
jwe
parents: 4015
diff changeset
141 op_pow_eq,
3525
6cfa474c5b99 [project @ 2000-02-02 10:48:41 by jwe]
jwe
parents: 3523
diff changeset
142 op_el_mul_eq,
6cfa474c5b99 [project @ 2000-02-02 10:48:41 by jwe]
jwe
parents: 3523
diff changeset
143 op_el_div_eq,
6cfa474c5b99 [project @ 2000-02-02 10:48:41 by jwe]
jwe
parents: 3523
diff changeset
144 op_el_ldiv_eq,
4018
a8621d87fbf5 [project @ 2002-08-05 03:17:25 by jwe]
jwe
parents: 4015
diff changeset
145 op_el_pow_eq,
3525
6cfa474c5b99 [project @ 2000-02-02 10:48:41 by jwe]
jwe
parents: 3523
diff changeset
146 op_el_and_eq,
6cfa474c5b99 [project @ 2000-02-02 10:48:41 by jwe]
jwe
parents: 3523
diff changeset
147 op_el_or_eq,
2880
0a076230ca87 [project @ 1997-04-24 09:47:41 by jwe]
jwe
parents: 2847
diff changeset
148 num_assign_ops,
0a076230ca87 [project @ 1997-04-24 09:47:41 by jwe]
jwe
parents: 2847
diff changeset
149 unknown_assign_op
0a076230ca87 [project @ 1997-04-24 09:47:41 by jwe]
jwe
parents: 2847
diff changeset
150 };
0a076230ca87 [project @ 1997-04-24 09:47:41 by jwe]
jwe
parents: 2847
diff changeset
151
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
152 static OCTINTERP_API binary_op assign_op_to_binary_op (assign_op);
15140
6ea86e1d0f5f Support +=, -=, *=, ect. in JIT
Max Brister <max@2bass.com>
parents: 15057
diff changeset
153
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
154 static OCTINTERP_API assign_op binary_op_to_assign_op (binary_op);
9607
1be3c73ed7b5 reuse temporary arrays in nested expressions
Jaroslav Hajek <highegg@gmail.com>
parents: 9521
diff changeset
155
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
156 static OCTINTERP_API std::string unary_op_as_string (unary_op);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
157 static OCTINTERP_API std::string unary_op_fcn_name (unary_op);
3203
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 3202
diff changeset
158
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
159 static OCTINTERP_API std::string binary_op_as_string (binary_op);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
160 static OCTINTERP_API std::string binary_op_fcn_name (binary_op);
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
161
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
162 static OCTINTERP_API std::string binary_op_fcn_name (compound_binary_op);
7800
5861b95e9879 support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents: 7789
diff changeset
163
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
164 static OCTINTERP_API std::string assign_op_as_string (assign_op);
2880
0a076230ca87 [project @ 1997-04-24 09:47:41 by jwe]
jwe
parents: 2847
diff changeset
165
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
166 static OCTINTERP_API octave_value
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
167 empty_conv (const std::string& type,
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
168 const octave_value& rhs = octave_value ());
3933
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3930
diff changeset
169
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
170 enum magic_colon { magic_colon_t };
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
171
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
172 octave_value ()
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
173 : m_rep (nil_rep ())
17787
175b392e91fe Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents: 17744
diff changeset
174 {
31814
53c10d69a9be maint: use "m_" prefix for member variables in class octave_value.
Rik <rik@octave.org>
parents: 31771
diff changeset
175 m_rep->m_count++;
17787
175b392e91fe Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents: 17744
diff changeset
176 }
8992
d12f44a5dce3 implement fast octave_value constructor
Jaroslav Hajek <highegg@gmail.com>
parents: 8982
diff changeset
177
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
178 OCTINTERP_API octave_value (short int i);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
179 OCTINTERP_API octave_value (unsigned short int i);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
180 OCTINTERP_API octave_value (int i);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
181 OCTINTERP_API octave_value (unsigned int i);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
182 OCTINTERP_API octave_value (long int i);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
183 OCTINTERP_API octave_value (unsigned long int i);
4353
ea4b8c35ac9d [project @ 2003-02-21 21:04:41 by jwe]
jwe
parents: 4346
diff changeset
184
21013
7f4c6d594e3d Finish renaming mapper function finite to isfinite.
Rik <rik@octave.org>
parents: 21012
diff changeset
185 // FIXME: These are kluges. They turn into doubles internally, which will
7f4c6d594e3d Finish renaming mapper function finite to isfinite.
Rik <rik@octave.org>
parents: 21012
diff changeset
186 // break for very large values. We just use them to store things like
7f4c6d594e3d Finish renaming mapper function finite to isfinite.
Rik <rik@octave.org>
parents: 21012
diff changeset
187 // 64-bit ino_t, etc, and hope that those values are never actually larger
7f4c6d594e3d Finish renaming mapper function finite to isfinite.
Rik <rik@octave.org>
parents: 21012
diff changeset
188 // than can be represented exactly in a double.
4353
ea4b8c35ac9d [project @ 2003-02-21 21:04:41 by jwe]
jwe
parents: 4346
diff changeset
189
21354
06d15e4e611a move public data type macros to octave-config.h
John W. Eaton <jwe@octave.org>
parents: 21294
diff changeset
190 #if defined (OCTAVE_HAVE_LONG_LONG_INT)
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
191 OCTINTERP_API octave_value (long long int i);
4353
ea4b8c35ac9d [project @ 2003-02-21 21:04:41 by jwe]
jwe
parents: 4346
diff changeset
192 #endif
21354
06d15e4e611a move public data type macros to octave-config.h
John W. Eaton <jwe@octave.org>
parents: 21294
diff changeset
193 #if defined (OCTAVE_HAVE_UNSIGNED_LONG_LONG_INT)
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
194 OCTINTERP_API octave_value (unsigned long long int i);
4353
ea4b8c35ac9d [project @ 2003-02-21 21:04:41 by jwe]
jwe
parents: 4346
diff changeset
195 #endif
ea4b8c35ac9d [project @ 2003-02-21 21:04:41 by jwe]
jwe
parents: 4346
diff changeset
196
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
197 OCTINTERP_API octave_value (octave::sys::time t);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
198 OCTINTERP_API octave_value (double d);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
199 OCTINTERP_API octave_value (float d);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
200 OCTINTERP_API octave_value (const Array<octave_value>& a,
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
201 bool is_cs_list = false);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
202 OCTINTERP_API octave_value (const Cell& c, bool is_cs_list = false);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
203 OCTINTERP_API octave_value (const Matrix& m,
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
204 const MatrixType& t = MatrixType ());
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
205 OCTINTERP_API octave_value (const FloatMatrix& m,
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
206 const MatrixType& t = MatrixType ());
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
207 OCTINTERP_API octave_value (const NDArray& nda);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
208 OCTINTERP_API octave_value (const FloatNDArray& nda);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
209 OCTINTERP_API octave_value (const Array<double>& m);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
210 OCTINTERP_API octave_value (const Array<float>& m);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
211 OCTINTERP_API octave_value (const DiagMatrix& d);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
212 OCTINTERP_API octave_value (const DiagArray2<double>& d);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
213 OCTINTERP_API octave_value (const DiagArray2<float>& d);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
214 OCTINTERP_API octave_value (const DiagArray2<Complex>& d);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
215 OCTINTERP_API octave_value (const DiagArray2<FloatComplex>& d);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
216 OCTINTERP_API octave_value (const FloatDiagMatrix& d);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
217 OCTINTERP_API octave_value (const RowVector& v);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
218 OCTINTERP_API octave_value (const FloatRowVector& v);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
219 OCTINTERP_API octave_value (const ColumnVector& v);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
220 OCTINTERP_API octave_value (const FloatColumnVector& v);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
221 OCTINTERP_API octave_value (const Complex& C);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
222 OCTINTERP_API octave_value (const FloatComplex& C);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
223 OCTINTERP_API octave_value (const ComplexMatrix& m,
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
224 const MatrixType& t = MatrixType ());
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
225 OCTINTERP_API octave_value (const FloatComplexMatrix& m,
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
226 const MatrixType& t = MatrixType ());
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
227 OCTINTERP_API octave_value (const ComplexNDArray& cnda);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
228 OCTINTERP_API octave_value (const FloatComplexNDArray& cnda);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
229 OCTINTERP_API octave_value (const Array<Complex>& m);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
230 OCTINTERP_API octave_value (const Array<FloatComplex>& m);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
231 OCTINTERP_API octave_value (const ComplexDiagMatrix& d);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
232 OCTINTERP_API octave_value (const FloatComplexDiagMatrix& d);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
233 OCTINTERP_API octave_value (const ComplexRowVector& v);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
234 OCTINTERP_API octave_value (const FloatComplexRowVector& v);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
235 OCTINTERP_API octave_value (const ComplexColumnVector& v);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
236 OCTINTERP_API octave_value (const FloatComplexColumnVector& v);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
237 OCTINTERP_API octave_value (const PermMatrix& p);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
238 OCTINTERP_API octave_value (bool b);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
239 OCTINTERP_API octave_value (const boolMatrix& bm,
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
240 const MatrixType& t = MatrixType ());
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
241 OCTINTERP_API octave_value (const boolNDArray& bnda);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
242 OCTINTERP_API octave_value (const Array<bool>& bnda);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
243 OCTINTERP_API octave_value (char c, char type = '\'');
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
244 OCTINTERP_API octave_value (const char *s, char type = '\'');
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
245 OCTINTERP_API octave_value (const std::string& s, char type = '\'');
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
246 OCTINTERP_API octave_value (const string_vector& s, char type = '\'');
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
247 OCTINTERP_API octave_value (const charMatrix& chm, char type = '\'');
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
248 OCTINTERP_API octave_value (const charNDArray& chnda, char type = '\'');
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
249 OCTINTERP_API octave_value (const Array<char>& chnda, char type = '\'');
21134
2e5c1f766ac9 provide replacement hints for deprecated C++ functions
John W. Eaton <jwe@octave.org>
parents: 21076
diff changeset
250
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
251 OCTINTERP_API octave_value (const SparseMatrix& m,
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
252 const MatrixType& t = MatrixType ());
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
253 OCTINTERP_API octave_value (const Sparse<double>& m,
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
254 const MatrixType& t = MatrixType ());
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
255 OCTINTERP_API octave_value (const SparseComplexMatrix& m,
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
256 const MatrixType& t = MatrixType ());
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
257 OCTINTERP_API octave_value (const Sparse<Complex>& m,
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
258 const MatrixType& t = MatrixType ());
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
259 OCTINTERP_API octave_value (const SparseBoolMatrix& bm,
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
260 const MatrixType& t = MatrixType ());
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
261 OCTINTERP_API octave_value (const Sparse<bool>& m,
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
262 const MatrixType& t = MatrixType ());
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
263 OCTINTERP_API octave_value (const octave_int8& i);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
264 OCTINTERP_API octave_value (const octave_int16& i);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
265 OCTINTERP_API octave_value (const octave_int32& i);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
266 OCTINTERP_API octave_value (const octave_int64& i);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
267 OCTINTERP_API octave_value (const octave_uint8& i);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
268 OCTINTERP_API octave_value (const octave_uint16& i);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
269 OCTINTERP_API octave_value (const octave_uint32& i);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
270 OCTINTERP_API octave_value (const octave_uint64& i);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
271 OCTINTERP_API octave_value (const int8NDArray& inda);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
272 OCTINTERP_API octave_value (const Array<octave_int8>& inda);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
273 OCTINTERP_API octave_value (const int16NDArray& inda);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
274 OCTINTERP_API octave_value (const Array<octave_int16>& inda);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
275 OCTINTERP_API octave_value (const int32NDArray& inda);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
276 OCTINTERP_API octave_value (const Array<octave_int32>& inda);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
277 OCTINTERP_API octave_value (const int64NDArray& inda);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
278 OCTINTERP_API octave_value (const Array<octave_int64>& inda);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
279 OCTINTERP_API octave_value (const uint8NDArray& inda);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
280 OCTINTERP_API octave_value (const Array<octave_uint8>& inda);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
281 OCTINTERP_API octave_value (const uint16NDArray& inda);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
282 OCTINTERP_API octave_value (const Array<octave_uint16>& inda);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
283 OCTINTERP_API octave_value (const uint32NDArray& inda);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
284 OCTINTERP_API octave_value (const Array<octave_uint32>& inda);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
285 OCTINTERP_API octave_value (const uint64NDArray& inda);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
286 OCTINTERP_API octave_value (const Array<octave_uint64>& inda);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
287 OCTINTERP_API octave_value (const Array<octave_idx_type>& inda,
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
288 bool zero_based = false,
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
289 bool cache_index = false);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
290 OCTINTERP_API octave_value (const Array<std::string>& cellstr);
29569
29a1f8fd8ee6 move idx_vector classes inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29478
diff changeset
291 OCTINTERP_API octave_value (const octave::idx_vector& idx, bool lazy = true);
29954
4c88a452519c rename OCTAVE_USE_DEPRECATED_FUNCTIONS macro and attempt to make it work
John W. Eaton <jwe@octave.org>
parents: 29655
diff changeset
292
30835
2989202f92f8 only allow range<FLOAT> to be instantiated
John W. Eaton <jwe@octave.org>
parents: 30564
diff changeset
293 OCTINTERP_API octave_value (const octave::range<double>& r,
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
294 bool force_range = false);
30835
2989202f92f8 only allow range<FLOAT> to be instantiated
John W. Eaton <jwe@octave.org>
parents: 30564
diff changeset
295
31827
c8dd3da44e83 maint: Remove `#if 0` commented-out code from the codebase.
Arun Giridhar <arungiridhar@gmail.com>
parents: 31814
diff changeset
296 // For now, enable only range<double>.
30835
2989202f92f8 only allow range<FLOAT> to be instantiated
John W. Eaton <jwe@octave.org>
parents: 30564
diff changeset
297
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
298 OCTINTERP_API octave_value (const octave_map& m);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
299 OCTINTERP_API octave_value (const octave_scalar_map& m);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
300 OCTINTERP_API octave_value (const std::map<std::string, octave_value>&);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
301 OCTINTERP_API octave_value (const octave_map& m, const std::string& id,
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
302 const std::list<std::string>& plist);
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
303 OCTINTERP_API octave_value (const octave_scalar_map& m, const std::string& id,
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
304 const std::list<std::string>& plist);
23352
778fdffc09df deprecate "octave_value (octave_value_list, bool)" constructor
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
305
23913
062ce545b21e mark octave_value from octave_value_list constructor explicit
John W. Eaton <jwe@octave.org>
parents: 23881
diff changeset
306 // This one is explicit because it can cause some trouble to
062ce545b21e mark octave_value from octave_value_list constructor explicit
John W. Eaton <jwe@octave.org>
parents: 23881
diff changeset
307 // accidentally create a cs-list when one was not intended.
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
308 explicit OCTINTERP_API octave_value (const octave_value_list& m);
23352
778fdffc09df deprecate "octave_value (octave_value_list, bool)" constructor
John W. Eaton <jwe@octave.org>
parents: 23220
diff changeset
309
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
310 OCTINTERP_API octave_value (octave_value::magic_colon);
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
311
32130
dedc746ecd58 allow octave_value_factory functions to work
John W. Eaton <jwe@octave.org>
parents: 32126
diff changeset
312 octave_value (octave_base_value *new_rep, bool borrow = false)
dedc746ecd58 allow octave_value_factory functions to work
John W. Eaton <jwe@octave.org>
parents: 32126
diff changeset
313 : m_rep (new_rep)
dedc746ecd58 allow octave_value_factory functions to work
John W. Eaton <jwe@octave.org>
parents: 32126
diff changeset
314 {
dedc746ecd58 allow octave_value_factory functions to work
John W. Eaton <jwe@octave.org>
parents: 32126
diff changeset
315 if (borrow)
dedc746ecd58 allow octave_value_factory functions to work
John W. Eaton <jwe@octave.org>
parents: 32126
diff changeset
316 m_rep->m_count++;
dedc746ecd58 allow octave_value_factory functions to work
John W. Eaton <jwe@octave.org>
parents: 32126
diff changeset
317 }
21134
2e5c1f766ac9 provide replacement hints for deprecated C++ functions
John W. Eaton <jwe@octave.org>
parents: 21076
diff changeset
318
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
319 // Copy constructor.
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
320
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
321 octave_value (const octave_value& a)
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
322 : m_rep (a.m_rep)
17787
175b392e91fe Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents: 17744
diff changeset
323 {
31814
53c10d69a9be maint: use "m_" prefix for member variables in class octave_value.
Rik <rik@octave.org>
parents: 31771
diff changeset
324 m_rep->m_count++;
17787
175b392e91fe Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents: 17744
diff changeset
325 }
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
326
27352
7335ebd4c798 define some move constructors and assignment operators
John W. Eaton <jwe@octave.org>
parents: 27216
diff changeset
327 octave_value (octave_value&& a)
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
328 : m_rep (a.m_rep)
27352
7335ebd4c798 define some move constructors and assignment operators
John W. Eaton <jwe@octave.org>
parents: 27216
diff changeset
329 {
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
330 a.m_rep = nullptr;
27352
7335ebd4c798 define some move constructors and assignment operators
John W. Eaton <jwe@octave.org>
parents: 27216
diff changeset
331 }
7335ebd4c798 define some move constructors and assignment operators
John W. Eaton <jwe@octave.org>
parents: 27216
diff changeset
332
3933
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3930
diff changeset
333 // This should only be called for derived types.
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3930
diff changeset
334
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
335 OCTINTERP_API octave_base_value * clone () const;
3933
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3930
diff changeset
336
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
337 octave_base_value * empty_clone () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
338 { return m_rep->empty_clone (); }
3933
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3930
diff changeset
339
21013
7f4c6d594e3d Finish renaming mapper function finite to isfinite.
Rik <rik@octave.org>
parents: 21012
diff changeset
340 // Delete the representation of this constant if the count drops to zero.
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
341
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
342 ~octave_value ()
6338
ec88b4ab6d10 [project @ 2007-02-22 07:07:19 by jwe]
jwe
parents: 6223
diff changeset
343 {
27352
7335ebd4c798 define some move constructors and assignment operators
John W. Eaton <jwe@octave.org>
parents: 27216
diff changeset
344 // Because we define a move constructor and a move assignment
7335ebd4c798 define some move constructors and assignment operators
John W. Eaton <jwe@octave.org>
parents: 27216
diff changeset
345 // operator, rep may be a nullptr here. We should only need to
7335ebd4c798 define some move constructors and assignment operators
John W. Eaton <jwe@octave.org>
parents: 27216
diff changeset
346 // protect the move assignment operator in a similar way.
7335ebd4c798 define some move constructors and assignment operators
John W. Eaton <jwe@octave.org>
parents: 27216
diff changeset
347
32838
54475b490e22 Backed out changeset 6cf9a8c9010c
Arun Giridhar <arungiridhar@gmail.com>
parents: 32835
diff changeset
348 if (m_rep && --m_rep->m_count == 0 && m_rep != nil_rep ())
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
349 delete m_rep;
6338
ec88b4ab6d10 [project @ 2007-02-22 07:07:19 by jwe]
jwe
parents: 6223
diff changeset
350 }
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
351
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
352 void make_unique ()
17787
175b392e91fe Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents: 17744
diff changeset
353 {
31814
53c10d69a9be maint: use "m_" prefix for member variables in class octave_value.
Rik <rik@octave.org>
parents: 31771
diff changeset
354 if (m_rep->m_count > 1)
17787
175b392e91fe Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents: 17744
diff changeset
355 {
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
356 octave_base_value *r = m_rep->unique_clone ();
13985
43cc49c7abd1 Use thread-safe atomic reference counting (GCC and MSVC).
Michael Goffioul <michael.goffioul@gmail.com>
parents: 13874
diff changeset
357
32838
54475b490e22 Backed out changeset 6cf9a8c9010c
Arun Giridhar <arungiridhar@gmail.com>
parents: 32835
diff changeset
358 if (--m_rep->m_count == 0 && m_rep != nil_rep ())
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
359 delete m_rep;
13985
43cc49c7abd1 Use thread-safe atomic reference counting (GCC and MSVC).
Michael Goffioul <michael.goffioul@gmail.com>
parents: 13874
diff changeset
360
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
361 m_rep = r;
17787
175b392e91fe Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents: 17744
diff changeset
362 }
175b392e91fe Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents: 17744
diff changeset
363 }
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
364
8546
3d8a914c580e improve parser indexed assigment code
Jaroslav Hajek <highegg@gmail.com>
parents: 8531
diff changeset
365 // This uniquifies the value if it is referenced by more than a certain
21013
7f4c6d594e3d Finish renaming mapper function finite to isfinite.
Rik <rik@octave.org>
parents: 21012
diff changeset
366 // number of shallow copies. This is useful for optimizations where we
8546
3d8a914c580e improve parser indexed assigment code
Jaroslav Hajek <highegg@gmail.com>
parents: 8531
diff changeset
367 // know a certain copy, typically within a cell array, to be obsolete.
3d8a914c580e improve parser indexed assigment code
Jaroslav Hajek <highegg@gmail.com>
parents: 8531
diff changeset
368 void make_unique (int obsolete_copies)
17787
175b392e91fe Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents: 17744
diff changeset
369 {
31814
53c10d69a9be maint: use "m_" prefix for member variables in class octave_value.
Rik <rik@octave.org>
parents: 31771
diff changeset
370 if (m_rep->m_count > obsolete_copies + 1)
17787
175b392e91fe Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents: 17744
diff changeset
371 {
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
372 octave_base_value *r = m_rep->unique_clone ();
13985
43cc49c7abd1 Use thread-safe atomic reference counting (GCC and MSVC).
Michael Goffioul <michael.goffioul@gmail.com>
parents: 13874
diff changeset
373
32838
54475b490e22 Backed out changeset 6cf9a8c9010c
Arun Giridhar <arungiridhar@gmail.com>
parents: 32835
diff changeset
374 if (--m_rep->m_count == 0 && m_rep != nil_rep ())
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
375 delete m_rep;
13985
43cc49c7abd1 Use thread-safe atomic reference counting (GCC and MSVC).
Michael Goffioul <michael.goffioul@gmail.com>
parents: 13874
diff changeset
376
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
377 m_rep = r;
17787
175b392e91fe Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents: 17744
diff changeset
378 }
175b392e91fe Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents: 17744
diff changeset
379 }
8546
3d8a914c580e improve parser indexed assigment code
Jaroslav Hajek <highegg@gmail.com>
parents: 8531
diff changeset
380
29476
c74ff452e2bb avoid memory leaks when returning handles to nested functions
John W. Eaton <jwe@octave.org>
parents: 29358
diff changeset
381 // Convert any nested function handles in this object to use weak
c74ff452e2bb avoid memory leaks when returning handles to nested functions
John W. Eaton <jwe@octave.org>
parents: 29358
diff changeset
382 // references to their enclosing stack frame context. Used to break
c74ff452e2bb avoid memory leaks when returning handles to nested functions
John W. Eaton <jwe@octave.org>
parents: 29358
diff changeset
383 // shared_ptr reference cycles for handles to nested functions
c74ff452e2bb avoid memory leaks when returning handles to nested functions
John W. Eaton <jwe@octave.org>
parents: 29358
diff changeset
384 // (closures).
c74ff452e2bb avoid memory leaks when returning handles to nested functions
John W. Eaton <jwe@octave.org>
parents: 29358
diff changeset
385 void break_closure_cycles (const std::shared_ptr<octave::stack_frame>&);
c74ff452e2bb avoid memory leaks when returning handles to nested functions
John W. Eaton <jwe@octave.org>
parents: 29358
diff changeset
386
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
387 // Simple assignment.
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
388
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
389 octave_value& operator = (const octave_value& a)
17787
175b392e91fe Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents: 17744
diff changeset
390 {
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
391 if (m_rep != a.m_rep)
17787
175b392e91fe Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents: 17744
diff changeset
392 {
32838
54475b490e22 Backed out changeset 6cf9a8c9010c
Arun Giridhar <arungiridhar@gmail.com>
parents: 32835
diff changeset
393 if (--m_rep->m_count == 0 && m_rep != nil_rep ())
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
394 delete m_rep;
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
395
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
396 m_rep = a.m_rep;
31814
53c10d69a9be maint: use "m_" prefix for member variables in class octave_value.
Rik <rik@octave.org>
parents: 31771
diff changeset
397 m_rep->m_count++;
17787
175b392e91fe Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents: 17744
diff changeset
398 }
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
399
17787
175b392e91fe Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents: 17744
diff changeset
400 return *this;
175b392e91fe Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents: 17744
diff changeset
401 }
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
402
27352
7335ebd4c798 define some move constructors and assignment operators
John W. Eaton <jwe@octave.org>
parents: 27216
diff changeset
403 octave_value& operator = (octave_value&& a)
7335ebd4c798 define some move constructors and assignment operators
John W. Eaton <jwe@octave.org>
parents: 27216
diff changeset
404 {
7335ebd4c798 define some move constructors and assignment operators
John W. Eaton <jwe@octave.org>
parents: 27216
diff changeset
405 // Because we define a move constructor and a move assignment
7335ebd4c798 define some move constructors and assignment operators
John W. Eaton <jwe@octave.org>
parents: 27216
diff changeset
406 // operator, rep may be a nullptr here. We should only need to
7335ebd4c798 define some move constructors and assignment operators
John W. Eaton <jwe@octave.org>
parents: 27216
diff changeset
407 // protect the destructor in a similar way.
7335ebd4c798 define some move constructors and assignment operators
John W. Eaton <jwe@octave.org>
parents: 27216
diff changeset
408
7335ebd4c798 define some move constructors and assignment operators
John W. Eaton <jwe@octave.org>
parents: 27216
diff changeset
409 if (this != &a)
7335ebd4c798 define some move constructors and assignment operators
John W. Eaton <jwe@octave.org>
parents: 27216
diff changeset
410 {
32838
54475b490e22 Backed out changeset 6cf9a8c9010c
Arun Giridhar <arungiridhar@gmail.com>
parents: 32835
diff changeset
411 if (m_rep && --m_rep->m_count == 0 && m_rep != nil_rep ())
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
412 delete m_rep;
27352
7335ebd4c798 define some move constructors and assignment operators
John W. Eaton <jwe@octave.org>
parents: 27216
diff changeset
413
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
414 m_rep = a.m_rep;
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
415 a.m_rep = nullptr;
27352
7335ebd4c798 define some move constructors and assignment operators
John W. Eaton <jwe@octave.org>
parents: 27216
diff changeset
416 }
7335ebd4c798 define some move constructors and assignment operators
John W. Eaton <jwe@octave.org>
parents: 27216
diff changeset
417
7335ebd4c798 define some move constructors and assignment operators
John W. Eaton <jwe@octave.org>
parents: 27216
diff changeset
418 return *this;
7335ebd4c798 define some move constructors and assignment operators
John W. Eaton <jwe@octave.org>
parents: 27216
diff changeset
419 }
7335ebd4c798 define some move constructors and assignment operators
John W. Eaton <jwe@octave.org>
parents: 27216
diff changeset
420
31814
53c10d69a9be maint: use "m_" prefix for member variables in class octave_value.
Rik <rik@octave.org>
parents: 31771
diff changeset
421 octave_idx_type get_count () const { return m_rep->m_count; }
3239
d54ef0aa6e82 [project @ 1999-03-27 17:40:45 by jwe]
jwe
parents: 3219
diff changeset
422
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
423 octave_base_value::type_conv_info numeric_conversion_function () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
424 { return m_rep->numeric_conversion_function (); }
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
425
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
426 octave_base_value::type_conv_info numeric_demotion_function () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
427 { return m_rep->numeric_demotion_function (); }
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7761
diff changeset
428
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
429 OCTINTERP_API void maybe_mutate ();
2409
47e5f57fb4bd [project @ 1996-10-15 16:44:26 by jwe]
jwe
parents: 2376
diff changeset
430
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
431 octave_value squeeze () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
432 { return m_rep->squeeze (); }
4532
01ee68d18069 [project @ 2003-10-10 00:49:54 by jwe]
jwe
parents: 4513
diff changeset
433
8458
d254a21e0120 reimplement full as method of octave_base_value
Jaroslav Hajek <highegg@gmail.com>
parents: 8456
diff changeset
434 // The result of full().
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
435 octave_value full_value () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
436 { return m_rep->full_value (); }
8458
d254a21e0120 reimplement full as method of octave_base_value
Jaroslav Hajek <highegg@gmail.com>
parents: 8456
diff changeset
437
22283
564203123065 move single and double type conversion functions to ov.cc
John W. Eaton <jwe@octave.org>
parents: 22197
diff changeset
438 // Type conversions.
564203123065 move single and double type conversion functions to ov.cc
John W. Eaton <jwe@octave.org>
parents: 22197
diff changeset
439
32138
45d89e3bebfd new functions for accessing double values
Petter T. <petter.vilhelm@gmail.com>
parents: 32137
diff changeset
440 // Returns a copy of a scalar (double), or makes a scalar
45d89e3bebfd new functions for accessing double values
Petter T. <petter.vilhelm@gmail.com>
parents: 32137
diff changeset
441 // for other types.
32511
0cafa72d1408 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Markus Mützel <markus.muetzel@gmx.de>
parents: 32447
diff changeset
442 octave_value as_double_or_copy () const
32138
45d89e3bebfd new functions for accessing double values
Petter T. <petter.vilhelm@gmail.com>
parents: 32137
diff changeset
443 { return m_rep->as_double_or_copy (); }
45d89e3bebfd new functions for accessing double values
Petter T. <petter.vilhelm@gmail.com>
parents: 32137
diff changeset
444
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
445 octave_value as_double () const { return m_rep->as_double (); }
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
446 octave_value as_single () const { return m_rep->as_single (); }
22296
8b18f46f6427 revamp double, single, int type conversions
John W. Eaton <jwe@octave.org>
parents: 22283
diff changeset
447
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
448 octave_value as_int8 () const { return m_rep->as_int8 (); }
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
449 octave_value as_int16 () const { return m_rep->as_int16 (); }
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
450 octave_value as_int32 () const { return m_rep->as_int32 (); }
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
451 octave_value as_int64 () const { return m_rep->as_int64 (); }
22296
8b18f46f6427 revamp double, single, int type conversions
John W. Eaton <jwe@octave.org>
parents: 22283
diff changeset
452
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
453 octave_value as_uint8 () const { return m_rep->as_uint8 (); }
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
454 octave_value as_uint16 () const { return m_rep->as_uint16 (); }
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
455 octave_value as_uint32 () const { return m_rep->as_uint32 (); }
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
456 octave_value as_uint64 () const { return m_rep->as_uint64 (); }
22283
564203123065 move single and double type conversion functions to ov.cc
John W. Eaton <jwe@octave.org>
parents: 22197
diff changeset
457
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
458 octave_base_value * try_narrowing_conversion ()
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
459 { return m_rep->try_narrowing_conversion (); }
2409
47e5f57fb4bd [project @ 1996-10-15 16:44:26 by jwe]
jwe
parents: 2376
diff changeset
460
9329
67fc970dad7d improve indexed assignment using indexed numel
Jaroslav Hajek <highegg@gmail.com>
parents: 9151
diff changeset
461 // Close to dims (), but can be overloaded for classes.
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
462 Matrix size ()
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
463 { return m_rep->size (); }
9329
67fc970dad7d improve indexed assignment using indexed numel
Jaroslav Hajek <highegg@gmail.com>
parents: 9151
diff changeset
464
26922
072d0610cc56 avoid some overloaded virtual warnings (bug #55741)
John W. Eaton <jwe@octave.org>
parents: 26916
diff changeset
465 // FIXME: should this function be deprecated and removed? It supports
072d0610cc56 avoid some overloaded virtual warnings (bug #55741)
John W. Eaton <jwe@octave.org>
parents: 26916
diff changeset
466 // an undocumented feature of Matlab.
072d0610cc56 avoid some overloaded virtual warnings (bug #55741)
John W. Eaton <jwe@octave.org>
parents: 26916
diff changeset
467 octave_idx_type xnumel (const octave_value_list& idx)
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
468 { return m_rep->xnumel (idx); }
9329
67fc970dad7d improve indexed assignment using indexed numel
Jaroslav Hajek <highegg@gmail.com>
parents: 9151
diff changeset
469
26916
9cd4b045fe3d avoid some overloaded virtual warnings (bug #55741)
John W. Eaton <jwe@octave.org>
parents: 26655
diff changeset
470 // FIXME: Do we really need all these different versions of subsref
9cd4b045fe3d avoid some overloaded virtual warnings (bug #55741)
John W. Eaton <jwe@octave.org>
parents: 26655
diff changeset
471 // and related functions?
9cd4b045fe3d avoid some overloaded virtual warnings (bug #55741)
John W. Eaton <jwe@octave.org>
parents: 26655
diff changeset
472
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
473 OCTINTERP_API octave_value
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
474 single_subsref (const std::string& type, const octave_value_list& idx);
4271
be631c1720ea [project @ 2003-01-03 19:36:04 by jwe]
jwe
parents: 4257
diff changeset
475
5759
ce79d238f142 [project @ 2006-04-13 13:04:32 by jwe]
jwe
parents: 5758
diff changeset
476 octave_value subsref (const std::string& type,
8551
906f976d35a8 further improve struct&cell indexing & indexed assignment
Jaroslav Hajek <highegg@gmail.com>
parents: 8546
diff changeset
477 const std::list<octave_value_list>& idx)
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
478 { return m_rep->subsref (type, idx); }
3933
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3930
diff changeset
479
8551
906f976d35a8 further improve struct&cell indexing & indexed assignment
Jaroslav Hajek <highegg@gmail.com>
parents: 8546
diff changeset
480 octave_value subsref (const std::string& type,
906f976d35a8 further improve struct&cell indexing & indexed assignment
Jaroslav Hajek <highegg@gmail.com>
parents: 8546
diff changeset
481 const std::list<octave_value_list>& idx,
906f976d35a8 further improve struct&cell indexing & indexed assignment
Jaroslav Hajek <highegg@gmail.com>
parents: 8546
diff changeset
482 bool auto_add)
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
483 { return m_rep->subsref (type, idx, auto_add); }
8551
906f976d35a8 further improve struct&cell indexing & indexed assignment
Jaroslav Hajek <highegg@gmail.com>
parents: 8546
diff changeset
484
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
485 OCTINTERP_API octave_value_list
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
486 subsref (const std::string& type, const std::list<octave_value_list>& idx,
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
487 int nargout);
3933
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3930
diff changeset
488
32126
b1e1830e2cff new subsref and subsasgn functions to handle simple case
Petter T. <petter.vilhelm@gmail.com>
parents: 31827
diff changeset
489 octave_value_list
b1e1830e2cff new subsref and subsasgn functions to handle simple case
Petter T. <petter.vilhelm@gmail.com>
parents: 31827
diff changeset
490 simple_subsref (char type, octave_value_list& idx, int nargout);
b1e1830e2cff new subsref and subsasgn functions to handle simple case
Petter T. <petter.vilhelm@gmail.com>
parents: 31827
diff changeset
491
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
492 OCTINTERP_API octave_value
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
493 next_subsref (const std::string& type,
29572
aef11bb4e6d1 use std::size_t and std::ptrdiff_t in C++ code (bug #60471)
John W. Eaton <jwe@octave.org>
parents: 29569
diff changeset
494 const std::list<octave_value_list>& idx, std::size_t skip = 1);
3933
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3930
diff changeset
495
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
496 OCTINTERP_API octave_value_list
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
497 next_subsref (int nargout, const std::string& type,
29572
aef11bb4e6d1 use std::size_t and std::ptrdiff_t in C++ code (bug #60471)
John W. Eaton <jwe@octave.org>
parents: 29569
diff changeset
498 const std::list<octave_value_list>& idx, std::size_t skip = 1);
4994
48d0defe9445 [project @ 2004-09-15 20:31:31 by jwe]
jwe
parents: 4970
diff changeset
499
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
500 OCTINTERP_API octave_value
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
501 next_subsref (bool auto_add, const std::string& type,
29572
aef11bb4e6d1 use std::size_t and std::ptrdiff_t in C++ code (bug #60471)
John W. Eaton <jwe@octave.org>
parents: 29569
diff changeset
502 const std::list<octave_value_list>& idx, std::size_t skip = 1);
8551
906f976d35a8 further improve struct&cell indexing & indexed assignment
Jaroslav Hajek <highegg@gmail.com>
parents: 8546
diff changeset
503
28631
70cdf8de553d move non-member octave_value operator functions to octave namespace
John W. Eaton <jwe@octave.org>
parents: 28588
diff changeset
504 octave_value index_op (const octave_value_list& idx, bool resize_ok = false)
70cdf8de553d move non-member octave_value operator functions to octave namespace
John W. Eaton <jwe@octave.org>
parents: 28588
diff changeset
505 {
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
506 return m_rep->do_index_op (idx, resize_ok);
28631
70cdf8de553d move non-member octave_value operator functions to octave namespace
John W. Eaton <jwe@octave.org>
parents: 28588
diff changeset
507 }
70cdf8de553d move non-member octave_value operator functions to octave namespace
John W. Eaton <jwe@octave.org>
parents: 28588
diff changeset
508
32147
8763a313ab91 new octave_value member function to compute end index for object
Petter T. <petter.vilhelm@gmail.com>
parents: 32145
diff changeset
509 OCTINTERP_API octave_idx_type
8763a313ab91 new octave_value member function to compute end index for object
Petter T. <petter.vilhelm@gmail.com>
parents: 32145
diff changeset
510 end_index (octave_idx_type index_position,
8763a313ab91 new octave_value member function to compute end index for object
Petter T. <petter.vilhelm@gmail.com>
parents: 32145
diff changeset
511 octave_idx_type num_indices) const;
8763a313ab91 new octave_value member function to compute end index for object
Petter T. <petter.vilhelm@gmail.com>
parents: 32145
diff changeset
512
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
513 OCTINTERP_API octave_value
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
514 subsasgn (const std::string& type, const std::list<octave_value_list>& idx,
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
515 const octave_value& rhs);
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
516
32126
b1e1830e2cff new subsref and subsasgn functions to handle simple case
Petter T. <petter.vilhelm@gmail.com>
parents: 31827
diff changeset
517 octave_value
b1e1830e2cff new subsref and subsasgn functions to handle simple case
Petter T. <petter.vilhelm@gmail.com>
parents: 31827
diff changeset
518 simple_subsasgn (char type, octave_value_list& idx, const octave_value& rhs)
b1e1830e2cff new subsref and subsasgn functions to handle simple case
Petter T. <petter.vilhelm@gmail.com>
parents: 31827
diff changeset
519 {
b1e1830e2cff new subsref and subsasgn functions to handle simple case
Petter T. <petter.vilhelm@gmail.com>
parents: 31827
diff changeset
520 return m_rep->simple_subsasgn (type, idx, rhs);
b1e1830e2cff new subsref and subsasgn functions to handle simple case
Petter T. <petter.vilhelm@gmail.com>
parents: 31827
diff changeset
521 }
b1e1830e2cff new subsref and subsasgn functions to handle simple case
Petter T. <petter.vilhelm@gmail.com>
parents: 31827
diff changeset
522
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
523 OCTINTERP_API octave_value
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
524 undef_subsasgn (const std::string& type,
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
525 const std::list<octave_value_list>& idx,
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
526 const octave_value& rhs);
12171
d08901c05c1b fix bug in class assignment to undefined object with index
John W. Eaton <jwe@octave.org>
parents: 11586
diff changeset
527
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
528 OCTINTERP_API octave_value&
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
529 assign (assign_op op, const std::string& type,
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
530 const std::list<octave_value_list>& idx, const octave_value& rhs);
2948
56be458e237f [project @ 1997-05-09 13:37:35 by jwe]
jwe
parents: 2942
diff changeset
531
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
532 OCTINTERP_API octave_value& assign (assign_op, const octave_value& rhs);
2948
56be458e237f [project @ 1997-05-09 13:37:35 by jwe]
jwe
parents: 2942
diff changeset
533
29569
29a1f8fd8ee6 move idx_vector classes inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29478
diff changeset
534 octave::idx_vector index_vector (bool require_integers = false) const
18130
e473c4853afc enable non-integer ranges as indices by default and deprecate preference
John W. Eaton <jwe@octave.org>
parents: 17870
diff changeset
535 {
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
536 return m_rep->index_vector (require_integers);
18130
e473c4853afc enable non-integer ranges as indices by default and deprecate preference
John W. Eaton <jwe@octave.org>
parents: 17870
diff changeset
537 }
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
538
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
539 // Size.
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
540
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
541 dim_vector dims () const { return m_rep->dims (); }
26078
0549d088f50e move get_dims_str from variables.cc to octave_value class
John W. Eaton <jwe@octave.org>
parents: 25054
diff changeset
542
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
543 OCTINTERP_API std::string get_dims_str () const;
4513
508238e65af7 [project @ 2003-09-19 21:40:57 by jwe]
jwe
parents: 4507
diff changeset
544
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
545 octave_idx_type rows () const { return m_rep->rows (); }
4563
742993a501b9 [project @ 2003-10-29 06:25:12 by jwe]
jwe
parents: 4559
diff changeset
546
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
547 octave_idx_type columns () const { return m_rep->columns (); }
3195
7a5a5da64756 [project @ 1998-10-28 22:54:04 by jwe]
jwe
parents: 3189
diff changeset
548
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
549 OCTINTERP_API octave_idx_type length () const;
4554
78e34346f6fd [project @ 2003-10-27 22:01:49 by jwe]
jwe
parents: 4550
diff changeset
550
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
551 int ndims () const { return m_rep->ndims (); }
4563
742993a501b9 [project @ 2003-10-29 06:25:12 by jwe]
jwe
parents: 4559
diff changeset
552
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
553 bool all_zero_dims () const { return dims ().all_zero (); }
5164
57077d0ddc8e [project @ 2005-02-25 19:55:24 by jwe]
jwe
parents: 5147
diff changeset
554
23590
eb3c7abad98f ov.h: Directly call replacement functions from deprecated functions.
Rik <rik@octave.org>
parents: 23589
diff changeset
555 // Are the dimensions of this constant zero by zero?
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
556 bool is_zero_by_zero () const
23590
eb3c7abad98f ov.h: Directly call replacement functions from deprecated functions.
Rik <rik@octave.org>
parents: 23589
diff changeset
557 { return (ndims () == 2 && rows () == 0 && columns () == 0); }
eb3c7abad98f ov.h: Directly call replacement functions from deprecated functions.
Rik <rik@octave.org>
parents: 23589
diff changeset
558
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
559 octave_idx_type numel () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
560 { return m_rep->numel (); }
4559
802818bfac91 [project @ 2003-10-28 19:13:43 by jwe]
jwe
parents: 4554
diff changeset
561
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
562 std::size_t byte_size () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
563 { return m_rep->byte_size (); }
4791
62f2fb593455 [project @ 2004-02-20 18:02:59 by jwe]
jwe
parents: 4700
diff changeset
564
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
565 octave_idx_type nnz () const { return m_rep->nnz (); }
5602
dfa2da0563e5 [project @ 2006-01-31 03:43:40 by jwe]
jwe
parents: 5508
diff changeset
566
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
567 octave_idx_type nzmax () const { return m_rep->nzmax (); }
5604
2857357f9d3c [project @ 2006-01-31 18:22:59 by jwe]
jwe
parents: 5602
diff changeset
568
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
569 octave_idx_type nfields () const { return m_rep->nfields (); }
5900
c20eb7330d13 [project @ 2006-07-22 08:31:16 by jwe]
jwe
parents: 5895
diff changeset
570
5759
ce79d238f142 [project @ 2006-04-13 13:04:32 by jwe]
jwe
parents: 5758
diff changeset
571 octave_value reshape (const dim_vector& dv) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
572 { return m_rep->reshape (dv); }
4567
fc30061d01da [project @ 2003-10-29 20:11:15 by jwe]
jwe
parents: 4563
diff changeset
573
5759
ce79d238f142 [project @ 2006-04-13 13:04:32 by jwe]
jwe
parents: 5758
diff changeset
574 octave_value permute (const Array<int>& vec, bool inv = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
575 { return m_rep->permute (vec, inv); }
4593
77566be8b9e9 [project @ 2003-11-11 17:25:42 by jwe]
jwe
parents: 4587
diff changeset
576
77566be8b9e9 [project @ 2003-11-11 17:25:42 by jwe]
jwe
parents: 4587
diff changeset
577 octave_value ipermute (const Array<int>& vec) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
578 { return m_rep->permute (vec, true); }
4593
77566be8b9e9 [project @ 2003-11-11 17:25:42 by jwe]
jwe
parents: 4587
diff changeset
579
5759
ce79d238f142 [project @ 2006-04-13 13:04:32 by jwe]
jwe
parents: 5758
diff changeset
580 octave_value resize (const dim_vector& dv, bool fill = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
581 { return m_rep->resize (dv, fill);}
4915
c638c144d4da [project @ 2004-07-23 19:01:22 by jwe]
jwe
parents: 4911
diff changeset
582
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
583 MatrixType matrix_type () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
584 { return m_rep->matrix_type (); }
5785
6b9cec830d72 [project @ 2006-05-03 19:32:46 by dbateman]
dbateman
parents: 5781
diff changeset
585
6b9cec830d72 [project @ 2006-05-03 19:32:46 by dbateman]
dbateman
parents: 5781
diff changeset
586 MatrixType matrix_type (const MatrixType& typ) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
587 { return m_rep->matrix_type (typ); }
5785
6b9cec830d72 [project @ 2006-05-03 19:32:46 by dbateman]
dbateman
parents: 5781
diff changeset
588
21013
7f4c6d594e3d Finish renaming mapper function finite to isfinite.
Rik <rik@octave.org>
parents: 21012
diff changeset
589 // Does this constant have a type? Both of these are provided since it is
7f4c6d594e3d Finish renaming mapper function finite to isfinite.
Rik <rik@octave.org>
parents: 21012
diff changeset
590 // sometimes more natural to write is_undefined() instead of ! is_defined().
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
591
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
592 bool is_defined () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
593 { return m_rep->is_defined (); }
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
594
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
595 bool is_undefined () const
17787
175b392e91fe Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents: 17744
diff changeset
596 { return ! is_defined (); }
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
597
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
598 bool is_legacy_object () const
30852
95725e6ad9c1 restore part of the old octave_range class as octave_legacy_range
John W. Eaton <jwe@octave.org>
parents: 30835
diff changeset
599 { return m_rep->is_legacy_object (); }
95725e6ad9c1 restore part of the old octave_range class as octave_legacy_range
John W. Eaton <jwe@octave.org>
parents: 30835
diff changeset
600
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
601 bool isempty () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
602 { return m_rep->isempty (); }
23577
80c42f4cca13 maint: Deprecate is_empty and replace with isempty.
Rik <rik@octave.org>
parents: 23576
diff changeset
603
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
604 bool iscell () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
605 { return m_rep->iscell (); }
23576
00e518162fda maint: Deprecate is_cell and replace with iscell.
Rik <rik@octave.org>
parents: 23575
diff changeset
606
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
607 bool iscellstr () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
608 { return m_rep->iscellstr (); }
23575
e95738a119da maint: Deprecate is_cellstr and replace with iscellstr.
Rik <rik@octave.org>
parents: 23502
diff changeset
609
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
610 bool is_real_scalar () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
611 { return m_rep->is_real_scalar (); }
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
612
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
613 bool is_real_matrix () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
614 { return m_rep->is_real_matrix (); }
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
615
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
616 bool is_complex_scalar () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
617 { return m_rep->is_complex_scalar (); }
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
618
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
619 bool is_complex_matrix () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
620 { return m_rep->is_complex_matrix (); }
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
621
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
622 bool is_bool_scalar () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
623 { return m_rep->is_bool_scalar (); }
5881
70b3f8f1a793 [project @ 2006-07-08 03:54:17 by jwe]
jwe
parents: 5864
diff changeset
624
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
625 bool is_bool_matrix () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
626 { return m_rep->is_bool_matrix (); }
4587
7b957b442818 [project @ 2003-11-10 15:50:39 by jwe]
jwe
parents: 4567
diff changeset
627
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
628 bool is_char_matrix () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
629 { return m_rep->is_char_matrix (); }
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
630
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
631 bool is_diag_matrix () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
632 { return m_rep->is_diag_matrix (); }
8366
8b1a2555c4e2 implement diagonal matrix objects
Jaroslav Hajek <highegg@gmail.com>
parents: 8346
diff changeset
633
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
634 bool is_perm_matrix () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
635 { return m_rep->is_perm_matrix (); }
8371
c3f7e2549abb make det & inv aware of diagonal & permutation matrices
Jaroslav Hajek <highegg@gmail.com>
parents: 8367
diff changeset
636
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
637 bool is_string () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
638 { return m_rep->is_string (); }
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
639
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
640 bool is_sq_string () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
641 { return m_rep->is_sq_string (); }
5279
bd32f770c09a [project @ 2005-04-12 21:55:31 by jwe]
jwe
parents: 5275
diff changeset
642
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
643 bool is_dq_string () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
644 { return m_rep->is_string () && ! m_rep->is_sq_string (); }
5280
25c12c80ccc3 [project @ 2005-04-14 19:19:45 by jwe]
jwe
parents: 5279
diff changeset
645
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
646 bool is_range () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
647 { return m_rep->is_range (); }
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
648
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
649 bool isstruct () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
650 { return m_rep->isstruct (); }
23584
7ed6b258db91 maint: Deprecate is_map and replace with isstruct.
Rik <rik@octave.org>
parents: 23583
diff changeset
651
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
652 bool is_classdef_meta () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
653 { return m_rep->is_classdef_meta (); }
23683
ffd27f53fc79 make +package function calls work again (bug #51295, #51296)
John W. Eaton <jwe@octave.org>
parents: 23680
diff changeset
654
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
655 bool is_classdef_object () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
656 { return m_rep->is_classdef_object (); }
23843
a52eb3f210af maint: Strip trailing whitespace from source files.
John W. Eaton <jwe@octave.org>
parents: 23838
diff changeset
657
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
658 bool is_classdef_superclass_ref () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
659 { return m_rep->is_classdef_superclass_ref (); }
23865
d56c18dc1373 new predicates for classdef_superclass_ref objects
John W. Eaton <jwe@octave.org>
parents: 23843
diff changeset
660
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
661 bool is_package () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
662 { return m_rep->is_package (); }
19110
fa48651fbb8a isstruct for classdef objects should not return true.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 19103
diff changeset
663
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
664 bool isobject () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
665 { return m_rep->isobject (); }
23587
0c468af9dc00 maint: Deprecate is_object and replace with isobject.
Rik <rik@octave.org>
parents: 23586
diff changeset
666
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
667 bool isjava () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
668 { return m_rep->isjava (); }
23578
7b47b7c2d6c7 maint: Deprecate is_java and replace with isjava.
Rik <rik@octave.org>
parents: 23577
diff changeset
669
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
670 bool is_cs_list () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
671 { return m_rep->is_cs_list (); }
3977
95663a3a2682 [project @ 2002-07-05 17:43:37 by jwe]
jwe
parents: 3933
diff changeset
672
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
673 bool is_magic_colon () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
674 { return m_rep->is_magic_colon (); }
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
675
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
676 bool is_magic_int () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
677 { return m_rep->is_magic_int (); }
28588
ee9b1081471f allow integer constants > flintmax to be represented exactly (bug #45945)
John W. Eaton <jwe@octave.org>
parents: 28444
diff changeset
678
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
679 bool isnull () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
680 { return m_rep->isnull (); }
23589
63950abd2f81 maint: Deprecate is_null_type and replace with isnull.
Rik <rik@octave.org>
parents: 23588
diff changeset
681
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
682 // Are any or all of the elements in this constant nonzero?
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
683
5759
ce79d238f142 [project @ 2006-04-13 13:04:32 by jwe]
jwe
parents: 5758
diff changeset
684 octave_value all (int dim = 0) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
685 { return m_rep->all (dim); }
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
686
5759
ce79d238f142 [project @ 2006-04-13 13:04:32 by jwe]
jwe
parents: 5758
diff changeset
687 octave_value any (int dim = 0) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
688 { return m_rep->any (dim); }
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
689
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
690 builtin_type_t builtin_type () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
691 { return m_rep->builtin_type (); }
9685
e793865ede63 implement builtin_type
Jaroslav Hajek <highegg@gmail.com>
parents: 9661
diff changeset
692
5895
b9c45e0cf685 [project @ 2006-07-19 01:57:44 by jwe]
jwe
parents: 5885
diff changeset
693 // Floating point types.
b9c45e0cf685 [project @ 2006-07-19 01:57:44 by jwe]
jwe
parents: 5885
diff changeset
694
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
695 bool is_double_type () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
696 { return m_rep->is_double_type (); }
5895
b9c45e0cf685 [project @ 2006-07-19 01:57:44 by jwe]
jwe
parents: 5885
diff changeset
697
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
698 bool is_single_type () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
699 { return m_rep->is_single_type (); }
5895
b9c45e0cf685 [project @ 2006-07-19 01:57:44 by jwe]
jwe
parents: 5885
diff changeset
700
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
701 bool isfloat () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
702 { return m_rep->isfloat (); }
23585
570170b6eb09 maint: Deprecate is_float_type and replace with isfloat.
Rik <rik@octave.org>
parents: 23584
diff changeset
703
5895
b9c45e0cf685 [project @ 2006-07-19 01:57:44 by jwe]
jwe
parents: 5885
diff changeset
704 // Integer types.
b9c45e0cf685 [project @ 2006-07-19 01:57:44 by jwe]
jwe
parents: 5885
diff changeset
705
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
706 bool is_int8_type () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
707 { return m_rep->is_int8_type (); }
5895
b9c45e0cf685 [project @ 2006-07-19 01:57:44 by jwe]
jwe
parents: 5885
diff changeset
708
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
709 bool is_int16_type () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
710 { return m_rep->is_int16_type (); }
5895
b9c45e0cf685 [project @ 2006-07-19 01:57:44 by jwe]
jwe
parents: 5885
diff changeset
711
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
712 bool is_int32_type () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
713 { return m_rep->is_int32_type (); }
5895
b9c45e0cf685 [project @ 2006-07-19 01:57:44 by jwe]
jwe
parents: 5885
diff changeset
714
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
715 bool is_int64_type () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
716 { return m_rep->is_int64_type (); }
5895
b9c45e0cf685 [project @ 2006-07-19 01:57:44 by jwe]
jwe
parents: 5885
diff changeset
717
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
718 bool is_uint8_type () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
719 { return m_rep->is_uint8_type (); }
5895
b9c45e0cf685 [project @ 2006-07-19 01:57:44 by jwe]
jwe
parents: 5885
diff changeset
720
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
721 bool is_uint16_type () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
722 { return m_rep->is_uint16_type (); }
5895
b9c45e0cf685 [project @ 2006-07-19 01:57:44 by jwe]
jwe
parents: 5885
diff changeset
723
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
724 bool is_uint32_type () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
725 { return m_rep->is_uint32_type (); }
5895
b9c45e0cf685 [project @ 2006-07-19 01:57:44 by jwe]
jwe
parents: 5885
diff changeset
726
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
727 bool is_uint64_type () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
728 { return m_rep->is_uint64_type (); }
5895
b9c45e0cf685 [project @ 2006-07-19 01:57:44 by jwe]
jwe
parents: 5885
diff changeset
729
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
730 bool isinteger () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
731 { return m_rep->isinteger (); }
23586
f6c5db0a02e7 maint: Deprecate is_numeric_type and replace with isnumeric.
Rik <rik@octave.org>
parents: 23585
diff changeset
732
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
733 // Other type stuff.
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
734
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
735 bool islogical () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
736 { return m_rep->islogical (); }
23579
c20a0fa91c0c maint: Deprecate is_bool_type and replace with islogical.
Rik <rik@octave.org>
parents: 23578
diff changeset
737
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
738 bool isreal () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
739 { return m_rep->isreal (); }
23582
0cc2011d800e maint: Deprecate is_real_type and replace with isreal.
Rik <rik@octave.org>
parents: 23581
diff changeset
740
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
741 bool iscomplex () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
742 { return m_rep->iscomplex (); }
23581
c3075ae020e1 maint: Deprecate is_complex_type and replace with iscomplex.
Rik <rik@octave.org>
parents: 23580
diff changeset
743
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
744 bool is_scalar_type () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
745 { return m_rep->is_scalar_type (); }
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
746
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
747 bool is_matrix_type () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
748 { return m_rep->is_matrix_type (); }
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
749
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
750 bool isnumeric () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
751 { return m_rep->isnumeric (); }
23586
f6c5db0a02e7 maint: Deprecate is_numeric_type and replace with isnumeric.
Rik <rik@octave.org>
parents: 23585
diff changeset
752
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
753 bool issparse () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
754 { return m_rep->issparse (); }
23583
b7747a2c88b2 maint: Deprecate is_sparse_type and replace with issparse.
Rik <rik@octave.org>
parents: 23582
diff changeset
755
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
756 // Does this constant correspond to a truth value?
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
757
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
758 bool is_true () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
759 { return m_rep->is_true (); }
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
760
8346
8302788f09db fix empty matrix handling in switch statement
Jaroslav Hajek <highegg@gmail.com>
parents: 8345
diff changeset
761 // Do two constants match (in a switch statement)?
11586
12df7854fa7c strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
762
8346
8302788f09db fix empty matrix handling in switch statement
Jaroslav Hajek <highegg@gmail.com>
parents: 8345
diff changeset
763 bool is_equal (const octave_value&) const;
8302788f09db fix empty matrix handling in switch statement
Jaroslav Hajek <highegg@gmail.com>
parents: 8345
diff changeset
764
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
765 bool is_constant () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
766 { return m_rep->is_constant (); }
2974
ebbc34ff7f66 [project @ 1997-05-15 19:36:16 by jwe]
jwe
parents: 2963
diff changeset
767
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
768 bool is_function_handle () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
769 { return m_rep->is_function_handle (); }
4654
a9b22513b7a6 [project @ 2003-11-24 18:56:35 by jwe]
jwe
parents: 4645
diff changeset
770
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
771 bool is_anonymous_function () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
772 { return m_rep->is_anonymous_function (); }
13241
2a8dcb5b3a00 improve default indexing for objects
John W. Eaton <jwe@octave.org>
parents: 13110
diff changeset
773
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
774 bool is_inline_function () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
775 { return m_rep->is_inline_function (); }
4954
ed0f3cb6d3d4 [project @ 2004-09-01 21:24:53 by jwe]
jwe
parents: 4946
diff changeset
776
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
777 bool is_function () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
778 { return m_rep->is_function (); }
2891
1a30f46e1870 [project @ 1997-04-28 01:49:00 by jwe]
jwe
parents: 2880
diff changeset
779
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
780 bool is_user_script () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
781 { return m_rep->is_user_script (); }
7336
745a8299c2b5 [project @ 2007-12-28 20:56:55 by jwe]
jwe
parents: 7064
diff changeset
782
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
783 bool is_user_function () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
784 { return m_rep->is_user_function (); }
7336
745a8299c2b5 [project @ 2007-12-28 20:56:55 by jwe]
jwe
parents: 7064
diff changeset
785
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
786 bool is_user_code () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
787 { return m_rep->is_user_code (); }
7719
87eda1f8faaa octave_user_code: new base class for octave_user_script and octave_user_function
John W. Eaton <jwe@octave.org>
parents: 7638
diff changeset
788
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
789 bool is_builtin_function () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
790 { return m_rep->is_builtin_function (); }
3325
2efa28a91e7a [project @ 1999-10-29 21:39:20 by jwe]
jwe
parents: 3301
diff changeset
791
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
792 bool is_dld_function () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
793 { return m_rep->is_dld_function (); }
3325
2efa28a91e7a [project @ 1999-10-29 21:39:20 by jwe]
jwe
parents: 3301
diff changeset
794
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
795 bool is_mex_function () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
796 { return m_rep->is_mex_function (); }
5864
e884ab4f29ee [project @ 2006-06-22 00:57:27 by jwe]
jwe
parents: 5848
diff changeset
797
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
798 void erase_subfunctions () { m_rep->erase_subfunctions (); }
7876
8447a5024650 clear subfunctions when clearing parent function
John W. Eaton <jwe@octave.org>
parents: 7800
diff changeset
799
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
800 // Values.
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
801
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
802 octave_value eval () { return *this; }
2891
1a30f46e1870 [project @ 1997-04-28 01:49:00 by jwe]
jwe
parents: 2880
diff changeset
803
5759
ce79d238f142 [project @ 2006-04-13 13:04:32 by jwe]
jwe
parents: 5758
diff changeset
804 short int
4254
df5f2e433a11 [project @ 2002-12-31 19:43:07 by jwe]
jwe
parents: 4252
diff changeset
805 short_value (bool req_int = false, bool frc_str_conv = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
806 { return m_rep->short_value (req_int, frc_str_conv); }
4254
df5f2e433a11 [project @ 2002-12-31 19:43:07 by jwe]
jwe
parents: 4252
diff changeset
807
5759
ce79d238f142 [project @ 2006-04-13 13:04:32 by jwe]
jwe
parents: 5758
diff changeset
808 unsigned short int
4254
df5f2e433a11 [project @ 2002-12-31 19:43:07 by jwe]
jwe
parents: 4252
diff changeset
809 ushort_value (bool req_int = false, bool frc_str_conv = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
810 { return m_rep->ushort_value (req_int, frc_str_conv); }
4254
df5f2e433a11 [project @ 2002-12-31 19:43:07 by jwe]
jwe
parents: 4252
diff changeset
811
5759
ce79d238f142 [project @ 2006-04-13 13:04:32 by jwe]
jwe
parents: 5758
diff changeset
812 int int_value (bool req_int = false, bool frc_str_conv = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
813 { return m_rep->int_value (req_int, frc_str_conv); }
3202
44d82b369c78 [project @ 1998-10-29 20:27:57 by jwe]
jwe
parents: 3195
diff changeset
814
33365
fb44a9db1bc6 Replace `xint_value` and related functions with stricter versions (bug #65538)
Arun Giridhar <arungiridhar@gmail.com>
parents: 33244
diff changeset
815 int strict_int_value (bool frc_str_conv = false) const
fb44a9db1bc6 Replace `xint_value` and related functions with stricter versions (bug #65538)
Arun Giridhar <arungiridhar@gmail.com>
parents: 33244
diff changeset
816 { return m_rep->int_value (true, frc_str_conv); }
fb44a9db1bc6 Replace `xint_value` and related functions with stricter versions (bug #65538)
Arun Giridhar <arungiridhar@gmail.com>
parents: 33244
diff changeset
817
5759
ce79d238f142 [project @ 2006-04-13 13:04:32 by jwe]
jwe
parents: 5758
diff changeset
818 unsigned int
4254
df5f2e433a11 [project @ 2002-12-31 19:43:07 by jwe]
jwe
parents: 4252
diff changeset
819 uint_value (bool req_int = false, bool frc_str_conv = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
820 { return m_rep->uint_value (req_int, frc_str_conv); }
4254
df5f2e433a11 [project @ 2002-12-31 19:43:07 by jwe]
jwe
parents: 4252
diff changeset
821
5759
ce79d238f142 [project @ 2006-04-13 13:04:32 by jwe]
jwe
parents: 5758
diff changeset
822 int nint_value (bool frc_str_conv = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
823 { return m_rep->nint_value (frc_str_conv); }
3202
44d82b369c78 [project @ 1998-10-29 20:27:57 by jwe]
jwe
parents: 3195
diff changeset
824
5759
ce79d238f142 [project @ 2006-04-13 13:04:32 by jwe]
jwe
parents: 5758
diff changeset
825 long int
4254
df5f2e433a11 [project @ 2002-12-31 19:43:07 by jwe]
jwe
parents: 4252
diff changeset
826 long_value (bool req_int = false, bool frc_str_conv = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
827 { return m_rep->long_value (req_int, frc_str_conv); }
4254
df5f2e433a11 [project @ 2002-12-31 19:43:07 by jwe]
jwe
parents: 4252
diff changeset
828
5759
ce79d238f142 [project @ 2006-04-13 13:04:32 by jwe]
jwe
parents: 5758
diff changeset
829 unsigned long int
4254
df5f2e433a11 [project @ 2002-12-31 19:43:07 by jwe]
jwe
parents: 4252
diff changeset
830 ulong_value (bool req_int = false, bool frc_str_conv = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
831 { return m_rep->ulong_value (req_int, frc_str_conv); }
4254
df5f2e433a11 [project @ 2002-12-31 19:43:07 by jwe]
jwe
parents: 4252
diff changeset
832
16323
e769440b39db provide int64 extractors for octave_value class
John W. Eaton <jwe@octave.org>
parents: 16091
diff changeset
833 int64_t
e769440b39db provide int64 extractors for octave_value class
John W. Eaton <jwe@octave.org>
parents: 16091
diff changeset
834 int64_value (bool req_int = false, bool frc_str_conv = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
835 { return m_rep->int64_value (req_int, frc_str_conv); }
16323
e769440b39db provide int64 extractors for octave_value class
John W. Eaton <jwe@octave.org>
parents: 16091
diff changeset
836
e769440b39db provide int64 extractors for octave_value class
John W. Eaton <jwe@octave.org>
parents: 16091
diff changeset
837 uint64_t
e769440b39db provide int64 extractors for octave_value class
John W. Eaton <jwe@octave.org>
parents: 16091
diff changeset
838 uint64_value (bool req_int = false, bool frc_str_conv = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
839 { return m_rep->uint64_value (req_int, frc_str_conv); }
16323
e769440b39db provide int64 extractors for octave_value class
John W. Eaton <jwe@octave.org>
parents: 16091
diff changeset
840
6133
e0065af38cf4 [project @ 2006-11-02 03:33:50 by jwe]
jwe
parents: 6116
diff changeset
841 octave_idx_type
8017
260294a5520f octave_value::idx_type_value: move definition to ov.cc from ov.h
John W. Eaton <jwe@octave.org>
parents: 7885
diff changeset
842 idx_type_value (bool req_int = false, bool frc_str_conv = false) const;
6133
e0065af38cf4 [project @ 2006-11-02 03:33:50 by jwe]
jwe
parents: 6116
diff changeset
843
33365
fb44a9db1bc6 Replace `xint_value` and related functions with stricter versions (bug #65538)
Arun Giridhar <arungiridhar@gmail.com>
parents: 33244
diff changeset
844 octave_idx_type
fb44a9db1bc6 Replace `xint_value` and related functions with stricter versions (bug #65538)
Arun Giridhar <arungiridhar@gmail.com>
parents: 33244
diff changeset
845 strict_idx_type_value (bool frc_str_conv = false) const;
fb44a9db1bc6 Replace `xint_value` and related functions with stricter versions (bug #65538)
Arun Giridhar <arungiridhar@gmail.com>
parents: 33244
diff changeset
846
5759
ce79d238f142 [project @ 2006-04-13 13:04:32 by jwe]
jwe
parents: 5758
diff changeset
847 double double_value (bool frc_str_conv = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
848 { return m_rep->double_value (frc_str_conv); }
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
849
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7761
diff changeset
850 float float_value (bool frc_str_conv = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
851 { return m_rep->float_value (frc_str_conv); }
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7761
diff changeset
852
5759
ce79d238f142 [project @ 2006-04-13 13:04:32 by jwe]
jwe
parents: 5758
diff changeset
853 double scalar_value (bool frc_str_conv = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
854 { return m_rep->scalar_value (frc_str_conv); }
2916
4e7bea116f24 [project @ 1997-04-30 20:56:31 by jwe]
jwe
parents: 2909
diff changeset
855
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7761
diff changeset
856 float float_scalar_value (bool frc_str_conv = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
857 { return m_rep->float_scalar_value (frc_str_conv); }
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7761
diff changeset
858
5759
ce79d238f142 [project @ 2006-04-13 13:04:32 by jwe]
jwe
parents: 5758
diff changeset
859 Matrix matrix_value (bool frc_str_conv = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
860 { return m_rep->matrix_value (frc_str_conv); }
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
861
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7761
diff changeset
862 FloatMatrix float_matrix_value (bool frc_str_conv = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
863 { return m_rep->float_matrix_value (frc_str_conv); }
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7761
diff changeset
864
5759
ce79d238f142 [project @ 2006-04-13 13:04:32 by jwe]
jwe
parents: 5758
diff changeset
865 NDArray array_value (bool frc_str_conv = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
866 { return m_rep->array_value (frc_str_conv); }
4505
e944fbe3fff2 [project @ 2003-09-09 19:14:06 by jwe]
jwe
parents: 4478
diff changeset
867
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7761
diff changeset
868 FloatNDArray float_array_value (bool frc_str_conv = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
869 { return m_rep->float_array_value (frc_str_conv); }
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7761
diff changeset
870
5759
ce79d238f142 [project @ 2006-04-13 13:04:32 by jwe]
jwe
parents: 5758
diff changeset
871 Complex complex_value (bool frc_str_conv = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
872 { return m_rep->complex_value (frc_str_conv); }
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
873
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7761
diff changeset
874 FloatComplex float_complex_value (bool frc_str_conv = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
875 { return m_rep->float_complex_value (frc_str_conv); }
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7761
diff changeset
876
5759
ce79d238f142 [project @ 2006-04-13 13:04:32 by jwe]
jwe
parents: 5758
diff changeset
877 ComplexMatrix complex_matrix_value (bool frc_str_conv = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
878 { return m_rep->complex_matrix_value (frc_str_conv); }
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
879
17787
175b392e91fe Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents: 17744
diff changeset
880 FloatComplexMatrix
175b392e91fe Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents: 17744
diff changeset
881 float_complex_matrix_value (bool frc_str_conv = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
882 { return m_rep->float_complex_matrix_value (frc_str_conv); }
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7761
diff changeset
883
5759
ce79d238f142 [project @ 2006-04-13 13:04:32 by jwe]
jwe
parents: 5758
diff changeset
884 ComplexNDArray complex_array_value (bool frc_str_conv = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
885 { return m_rep->complex_array_value (frc_str_conv); }
4550
69a9b22a72a2 [project @ 2003-10-27 15:41:55 by jwe]
jwe
parents: 4532
diff changeset
886
17787
175b392e91fe Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents: 17744
diff changeset
887 FloatComplexNDArray
175b392e91fe Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents: 17744
diff changeset
888 float_complex_array_value (bool frc_str_conv = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
889 { return m_rep->float_complex_array_value (frc_str_conv); }
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7761
diff changeset
890
5943
c038c2947ee1 [project @ 2006-08-18 21:27:03 by jwe]
jwe
parents: 5900
diff changeset
891 bool bool_value (bool warn = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
892 { return m_rep->bool_value (warn); }
4550
69a9b22a72a2 [project @ 2003-10-27 15:41:55 by jwe]
jwe
parents: 4532
diff changeset
893
33365
fb44a9db1bc6 Replace `xint_value` and related functions with stricter versions (bug #65538)
Arun Giridhar <arungiridhar@gmail.com>
parents: 33244
diff changeset
894 bool strict_bool_value () const
fb44a9db1bc6 Replace `xint_value` and related functions with stricter versions (bug #65538)
Arun Giridhar <arungiridhar@gmail.com>
parents: 33244
diff changeset
895 { return m_rep->bool_value (true); }
fb44a9db1bc6 Replace `xint_value` and related functions with stricter versions (bug #65538)
Arun Giridhar <arungiridhar@gmail.com>
parents: 33244
diff changeset
896
5943
c038c2947ee1 [project @ 2006-08-18 21:27:03 by jwe]
jwe
parents: 5900
diff changeset
897 boolMatrix bool_matrix_value (bool warn = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
898 { return m_rep->bool_matrix_value (warn); }
4550
69a9b22a72a2 [project @ 2003-10-27 15:41:55 by jwe]
jwe
parents: 4532
diff changeset
899
5943
c038c2947ee1 [project @ 2006-08-18 21:27:03 by jwe]
jwe
parents: 5900
diff changeset
900 boolNDArray bool_array_value (bool warn = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
901 { return m_rep->bool_array_value (warn); }
4550
69a9b22a72a2 [project @ 2003-10-27 15:41:55 by jwe]
jwe
parents: 4532
diff changeset
902
5759
ce79d238f142 [project @ 2006-04-13 13:04:32 by jwe]
jwe
parents: 5758
diff changeset
903 charMatrix char_matrix_value (bool frc_str_conv = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
904 { return m_rep->char_matrix_value (frc_str_conv); }
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
905
5759
ce79d238f142 [project @ 2006-04-13 13:04:32 by jwe]
jwe
parents: 5758
diff changeset
906 charNDArray char_array_value (bool frc_str_conv = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
907 { return m_rep->char_array_value (frc_str_conv); }
4550
69a9b22a72a2 [project @ 2003-10-27 15:41:55 by jwe]
jwe
parents: 4532
diff changeset
908
5759
ce79d238f142 [project @ 2006-04-13 13:04:32 by jwe]
jwe
parents: 5758
diff changeset
909 SparseMatrix sparse_matrix_value (bool frc_str_conv = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
910 { return m_rep->sparse_matrix_value (frc_str_conv); }
5164
57077d0ddc8e [project @ 2005-02-25 19:55:24 by jwe]
jwe
parents: 5147
diff changeset
911
17787
175b392e91fe Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents: 17744
diff changeset
912 SparseComplexMatrix
175b392e91fe Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents: 17744
diff changeset
913 sparse_complex_matrix_value (bool frc_str_conv = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
914 { return m_rep->sparse_complex_matrix_value (frc_str_conv); }
5164
57077d0ddc8e [project @ 2005-02-25 19:55:24 by jwe]
jwe
parents: 5147
diff changeset
915
9852
aabf7a8c2e57 implement sparse logical conversion
Jaroslav Hajek <highegg@gmail.com>
parents: 9835
diff changeset
916 SparseBoolMatrix sparse_bool_matrix_value (bool warn = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
917 { return m_rep->sparse_bool_matrix_value (warn); }
5164
57077d0ddc8e [project @ 2005-02-25 19:55:24 by jwe]
jwe
parents: 5147
diff changeset
918
8916
a2878ba31a9e add diag & perm matrix query methods to octave_value
Jaroslav Hajek <highegg@gmail.com>
parents: 8811
diff changeset
919 DiagMatrix diag_matrix_value (bool force = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
920 { return m_rep->diag_matrix_value (force); }
11586
12df7854fa7c strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
921
8916
a2878ba31a9e add diag & perm matrix query methods to octave_value
Jaroslav Hajek <highegg@gmail.com>
parents: 8811
diff changeset
922 FloatDiagMatrix float_diag_matrix_value (bool force = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
923 { return m_rep->float_diag_matrix_value (force); }
11586
12df7854fa7c strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
924
8916
a2878ba31a9e add diag & perm matrix query methods to octave_value
Jaroslav Hajek <highegg@gmail.com>
parents: 8811
diff changeset
925 ComplexDiagMatrix complex_diag_matrix_value (bool force = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
926 { return m_rep->complex_diag_matrix_value (force); }
11586
12df7854fa7c strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
927
17787
175b392e91fe Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents: 17744
diff changeset
928 FloatComplexDiagMatrix
175b392e91fe Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents: 17744
diff changeset
929 float_complex_diag_matrix_value (bool force = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
930 { return m_rep->float_complex_diag_matrix_value (force); }
8916
a2878ba31a9e add diag & perm matrix query methods to octave_value
Jaroslav Hajek <highegg@gmail.com>
parents: 8811
diff changeset
931
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
932 PermMatrix perm_matrix_value () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
933 { return m_rep->perm_matrix_value (); }
11586
12df7854fa7c strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
934
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
935 octave_int8 int8_scalar_value () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
936 { return m_rep->int8_scalar_value (); }
4910
1242acab4246 [project @ 2004-07-12 17:14:13 by jwe]
jwe
parents: 4906
diff changeset
937
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
938 octave_int16 int16_scalar_value () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
939 { return m_rep->int16_scalar_value (); }
4910
1242acab4246 [project @ 2004-07-12 17:14:13 by jwe]
jwe
parents: 4906
diff changeset
940
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
941 octave_int32 int32_scalar_value () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
942 { return m_rep->int32_scalar_value (); }
4910
1242acab4246 [project @ 2004-07-12 17:14:13 by jwe]
jwe
parents: 4906
diff changeset
943
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
944 octave_int64 int64_scalar_value () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
945 { return m_rep->int64_scalar_value (); }
4910
1242acab4246 [project @ 2004-07-12 17:14:13 by jwe]
jwe
parents: 4906
diff changeset
946
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
947 octave_uint8 uint8_scalar_value () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
948 { return m_rep->uint8_scalar_value (); }
4910
1242acab4246 [project @ 2004-07-12 17:14:13 by jwe]
jwe
parents: 4906
diff changeset
949
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
950 octave_uint16 uint16_scalar_value () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
951 { return m_rep->uint16_scalar_value (); }
4910
1242acab4246 [project @ 2004-07-12 17:14:13 by jwe]
jwe
parents: 4906
diff changeset
952
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
953 octave_uint32 uint32_scalar_value () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
954 { return m_rep->uint32_scalar_value (); }
4910
1242acab4246 [project @ 2004-07-12 17:14:13 by jwe]
jwe
parents: 4906
diff changeset
955
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
956 octave_uint64 uint64_scalar_value () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
957 { return m_rep->uint64_scalar_value (); }
4910
1242acab4246 [project @ 2004-07-12 17:14:13 by jwe]
jwe
parents: 4906
diff changeset
958
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
959 int8NDArray int8_array_value () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
960 { return m_rep->int8_array_value (); }
4906
6754342ef7ad [project @ 2004-06-23 11:11:50 by jwe]
jwe
parents: 4901
diff changeset
961
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
962 int16NDArray int16_array_value () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
963 { return m_rep->int16_array_value (); }
4906
6754342ef7ad [project @ 2004-06-23 11:11:50 by jwe]
jwe
parents: 4901
diff changeset
964
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
965 int32NDArray int32_array_value () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
966 { return m_rep->int32_array_value (); }
4906
6754342ef7ad [project @ 2004-06-23 11:11:50 by jwe]
jwe
parents: 4901
diff changeset
967
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
968 int64NDArray int64_array_value () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
969 { return m_rep->int64_array_value (); }
4906
6754342ef7ad [project @ 2004-06-23 11:11:50 by jwe]
jwe
parents: 4901
diff changeset
970
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
971 uint8NDArray uint8_array_value () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
972 { return m_rep->uint8_array_value (); }
4906
6754342ef7ad [project @ 2004-06-23 11:11:50 by jwe]
jwe
parents: 4901
diff changeset
973
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
974 uint16NDArray uint16_array_value () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
975 { return m_rep->uint16_array_value (); }
4906
6754342ef7ad [project @ 2004-06-23 11:11:50 by jwe]
jwe
parents: 4901
diff changeset
976
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
977 uint32NDArray uint32_array_value () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
978 { return m_rep->uint32_array_value (); }
4906
6754342ef7ad [project @ 2004-06-23 11:11:50 by jwe]
jwe
parents: 4901
diff changeset
979
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
980 uint64NDArray uint64_array_value () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
981 { return m_rep->uint64_array_value (); }
4906
6754342ef7ad [project @ 2004-06-23 11:11:50 by jwe]
jwe
parents: 4901
diff changeset
982
5759
ce79d238f142 [project @ 2006-04-13 13:04:32 by jwe]
jwe
parents: 5758
diff changeset
983 std::string string_value (bool force = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
984 { return m_rep->string_value (force); }
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
985
20990
fc9cca99b2de Deprecate all_strings, replace with string_vector_value.
Rik <rik@octave.org>
parents: 20791
diff changeset
986 string_vector string_vector_value (bool pad = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
987 { return m_rep->string_vector_value (pad); }
20990
fc9cca99b2de Deprecate all_strings, replace with string_vector_value.
Rik <rik@octave.org>
parents: 20791
diff changeset
988
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
989 Cell cell_value () const;
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
990
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
991 Array<std::string> cellstr_value () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
992 { return m_rep->cellstr_value (); }
8732
a669df7beb73 [mq]: x
John W. Eaton <jwe@octave.org>
parents: 8721
diff changeset
993
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
994 octave::range<double> range_value () const
30835
2989202f92f8 only allow range<FLOAT> to be instantiated
John W. Eaton <jwe@octave.org>
parents: 30564
diff changeset
995 { return m_rep->range_value (); }
2989202f92f8 only allow range<FLOAT> to be instantiated
John W. Eaton <jwe@octave.org>
parents: 30564
diff changeset
996
31827
c8dd3da44e83 maint: Remove `#if 0` commented-out code from the codebase.
Arun Giridhar <arungiridhar@gmail.com>
parents: 31814
diff changeset
997 // For now, enable only range<double>.
30835
2989202f92f8 only allow range<FLOAT> to be instantiated
John W. Eaton <jwe@octave.org>
parents: 30564
diff changeset
998
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
999 OCTINTERP_API octave_map map_value () const;
10742
604e13a89c7f initial code for structs rewrite
Jaroslav Hajek <highegg@gmail.com>
parents: 10670
diff changeset
1000
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
1001 OCTINTERP_API octave_scalar_map scalar_map_value () const;
10742
604e13a89c7f initial code for structs rewrite
Jaroslav Hajek <highegg@gmail.com>
parents: 10670
diff changeset
1002
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
1003 string_vector map_keys () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
1004 { return m_rep->map_keys (); }
3933
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3930
diff changeset
1005
31260
c5c8bf50449c Improve performance of isfield from linear time to constant time (bug #58105)
Arun Giridhar <arungiridhar@gmail.com>
parents: 30854
diff changeset
1006 bool isfield (const std::string& field_name) const
c5c8bf50449c Improve performance of isfield from linear time to constant time (bug #58105)
Arun Giridhar <arungiridhar@gmail.com>
parents: 30854
diff changeset
1007 { return m_rep->isfield (field_name); }
c5c8bf50449c Improve performance of isfield from linear time to constant time (bug #58105)
Arun Giridhar <arungiridhar@gmail.com>
parents: 30854
diff changeset
1008
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
1009 std::size_t nparents () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
1010 { return m_rep->nparents (); }
9151
d8f9588c6ba1 object exemplars
John W. Eaton <jwe@octave.org>
parents: 9010
diff changeset
1011
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
1012 std::list<std::string> parent_class_name_list () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
1013 { return m_rep->parent_class_name_list (); }
9151
d8f9588c6ba1 object exemplars
John W. Eaton <jwe@octave.org>
parents: 9010
diff changeset
1014
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
1015 string_vector parent_class_names () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
1016 { return m_rep->parent_class_names (); }
9010
f914834836e7 Partial implementation of derived classes using the old form with "@" files.
rtshort@smoketree.phaselocked.com
parents: 8992
diff changeset
1017
f914834836e7 Partial implementation of derived classes using the old form with "@" files.
rtshort@smoketree.phaselocked.com
parents: 8992
diff changeset
1018 octave_base_value *
f914834836e7 Partial implementation of derived classes using the old form with "@" files.
rtshort@smoketree.phaselocked.com
parents: 8992
diff changeset
1019 find_parent_class (const std::string& parent_class_name)
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
1020 { return m_rep->find_parent_class (parent_class_name); }
9010
f914834836e7 Partial implementation of derived classes using the old form with "@" files.
rtshort@smoketree.phaselocked.com
parents: 8992
diff changeset
1021
19103
56bc1464ec59 Implement "isa" for classdef objects.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 18416
diff changeset
1022 bool is_instance_of (const std::string& cls_name) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
1023 { return m_rep->is_instance_of (cls_name); }
19103
56bc1464ec59 Implement "isa" for classdef objects.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 18416
diff changeset
1024
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1025 OCTINTERP_API octave_classdef *
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1026 classdef_object_value (bool silent = false) const;
23881
5aec653c88e7 new function for accessing classdef objects
John W. Eaton <jwe@octave.org>
parents: 23865
diff changeset
1027
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1028 OCTINTERP_API octave_function *
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1029 function_value (bool silent = false) const;
2974
ebbc34ff7f66 [project @ 1997-05-15 19:36:16 by jwe]
jwe
parents: 2963
diff changeset
1030
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1031 OCTINTERP_API octave_user_function *
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1032 user_function_value (bool silent = false) const;
7761
5adeea5de26c symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents: 7740
diff changeset
1033
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1034 OCTINTERP_API octave_user_script *
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1035 user_script_value (bool silent = false) const;
4700
ca3a1d687bba [project @ 2004-01-21 03:28:31 by jwe]
jwe
parents: 4687
diff changeset
1036
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1037 OCTINTERP_API octave_user_code * user_code_value (bool silent = false) const;
7719
87eda1f8faaa octave_user_code: new base class for octave_user_script and octave_user_function
John W. Eaton <jwe@octave.org>
parents: 7638
diff changeset
1038
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1039 OCTINTERP_API octave_fcn_handle *
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1040 fcn_handle_value (bool silent = false) const;
4343
db5e0814277a [project @ 2003-02-20 16:44:16 by jwe]
jwe
parents: 4342
diff changeset
1041
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
1042 OCTINTERP_API octave_value_list list_value () const;
2880
0a076230ca87 [project @ 1997-04-24 09:47:41 by jwe]
jwe
parents: 2847
diff changeset
1043
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1044 OCTINTERP_API ColumnVector
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1045 column_vector_value (bool frc_str_conv = false,
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1046 bool frc_vec_conv = false) const;
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
1047
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1048 OCTINTERP_API ComplexColumnVector
3419
e71b3d1dd327 [project @ 2000-01-12 05:23:34 by jwe]
jwe
parents: 3418
diff changeset
1049 complex_column_vector_value (bool frc_str_conv = false,
17787
175b392e91fe Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents: 17744
diff changeset
1050 bool frc_vec_conv = false) const;
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
1051
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1052 OCTINTERP_API RowVector
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1053 row_vector_value (bool frc_str_conv = false,
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1054 bool frc_vec_conv = false) const;
3419
e71b3d1dd327 [project @ 2000-01-12 05:23:34 by jwe]
jwe
parents: 3418
diff changeset
1055
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1056 OCTINTERP_API ComplexRowVector
3419
e71b3d1dd327 [project @ 2000-01-12 05:23:34 by jwe]
jwe
parents: 3418
diff changeset
1057 complex_row_vector_value (bool frc_str_conv = false,
10313
f3b65e1ae355 untabify src header files
John W. Eaton <jwe@octave.org>
parents: 10293
diff changeset
1058 bool frc_vec_conv = false) const;
3419
e71b3d1dd327 [project @ 2000-01-12 05:23:34 by jwe]
jwe
parents: 3418
diff changeset
1059
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1060 OCTINTERP_API FloatColumnVector
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1061 float_column_vector_value (bool frc_str_conv = false,
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1062 bool frc_vec_conv = false) const;
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7761
diff changeset
1063
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1064 OCTINTERP_API FloatComplexColumnVector
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7761
diff changeset
1065 float_complex_column_vector_value (bool frc_str_conv = false,
17787
175b392e91fe Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents: 17744
diff changeset
1066 bool frc_vec_conv = false) const;
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7761
diff changeset
1067
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1068 OCTINTERP_API FloatRowVector
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1069 float_row_vector_value (bool frc_str_conv = false,
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1070 bool frc_vec_conv = false) const;
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7761
diff changeset
1071
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1072 OCTINTERP_API FloatComplexRowVector
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7761
diff changeset
1073 float_complex_row_vector_value (bool frc_str_conv = false,
17787
175b392e91fe Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents: 17744
diff changeset
1074 bool frc_vec_conv = false) const;
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7761
diff changeset
1075
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1076 OCTINTERP_API Array<int>
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1077 int_vector_value (bool req_int = false,
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1078 bool frc_str_conv = false,
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1079 bool frc_vec_conv = false) const;
4044
9678c5526190 [project @ 2002-08-15 16:54:55 by jwe]
jwe
parents: 4018
diff changeset
1080
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1081 OCTINTERP_API Array<octave_idx_type>
8811
20dfb885f877 int -> octave_idx fixes
John W. Eaton <jwe@octave.org>
parents: 8734
diff changeset
1082 octave_idx_type_vector_value (bool req_int = false,
10313
f3b65e1ae355 untabify src header files
John W. Eaton <jwe@octave.org>
parents: 10293
diff changeset
1083 bool frc_str_conv = false,
f3b65e1ae355 untabify src header files
John W. Eaton <jwe@octave.org>
parents: 10293
diff changeset
1084 bool frc_vec_conv = false) const;
8811
20dfb885f877 int -> octave_idx fixes
John W. Eaton <jwe@octave.org>
parents: 8734
diff changeset
1085
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1086 OCTINTERP_API Array<double>
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1087 vector_value (bool frc_str_conv = false,
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1088 bool frc_vec_conv = false) const;
3419
e71b3d1dd327 [project @ 2000-01-12 05:23:34 by jwe]
jwe
parents: 3418
diff changeset
1089
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1090 OCTINTERP_API Array<Complex>
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1091 complex_vector_value (bool frc_str_conv = false,
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1092 bool frc_vec_conv = false) const;
3419
e71b3d1dd327 [project @ 2000-01-12 05:23:34 by jwe]
jwe
parents: 3418
diff changeset
1093
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1094 OCTINTERP_API Array<float>
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1095 float_vector_value (bool frc_str_conv = false,
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1096 bool frc_vec_conv = false) const;
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7761
diff changeset
1097
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1098 OCTINTERP_API Array<FloatComplex>
17787
175b392e91fe Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents: 17744
diff changeset
1099 float_complex_vector_value (bool frc_str_conv = false,
175b392e91fe Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents: 17744
diff changeset
1100 bool frc_vec_conv = false) const;
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7761
diff changeset
1101
21013
7f4c6d594e3d Finish renaming mapper function finite to isfinite.
Rik <rik@octave.org>
parents: 21012
diff changeset
1102 // Extract values of specific types without any implicit type conversions.
7f4c6d594e3d Finish renaming mapper function finite to isfinite.
Rik <rik@octave.org>
parents: 21012
diff changeset
1103 // Throw an error if an object is the wrong type for the requested value
7f4c6d594e3d Finish renaming mapper function finite to isfinite.
Rik <rik@octave.org>
parents: 21012
diff changeset
1104 // extraction.
20700
68e3a747ca02 rename octave_value value extractors that accept error message args
John W. Eaton <jwe@octave.org>
parents: 20696
diff changeset
1105 //
21013
7f4c6d594e3d Finish renaming mapper function finite to isfinite.
Rik <rik@octave.org>
parents: 21012
diff changeset
1106 // These functions are intended to provide a simple way to extract values of
7f4c6d594e3d Finish renaming mapper function finite to isfinite.
Rik <rik@octave.org>
parents: 21012
diff changeset
1107 // specific types and display error messages that are more meaningful than
7f4c6d594e3d Finish renaming mapper function finite to isfinite.
Rik <rik@octave.org>
parents: 21012
diff changeset
1108 // the generic "error: wrong type argument 'cell'" message.
20700
68e3a747ca02 rename octave_value value extractors that accept error message args
John W. Eaton <jwe@octave.org>
parents: 20696
diff changeset
1109
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1110 OCTINTERP_API short int xshort_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1111
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1112 OCTINTERP_API unsigned short int xushort_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1113
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1114 OCTINTERP_API int xint_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1115
33446
5fded8395daa rename yTYPE_value functions strict_TYPE_value
John W. Eaton <jwe@octave.org>
parents: 33382
diff changeset
1116 OCTINTERP_API int strict_int_value (const char *fmt, ...) const;
33365
fb44a9db1bc6 Replace `xint_value` and related functions with stricter versions (bug #65538)
Arun Giridhar <arungiridhar@gmail.com>
parents: 33244
diff changeset
1117
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1118 OCTINTERP_API unsigned int xuint_value (const char *fmt, ...) const;
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1119
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1120 OCTINTERP_API int xnint_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1121
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1122 OCTINTERP_API long int xlong_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1123
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1124 OCTINTERP_API unsigned long int xulong_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1125
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1126 OCTINTERP_API int64_t xint64_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1127
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1128 OCTINTERP_API uint64_t xuint64_value (const char *fmt, ...) const;
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1129
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1130 OCTINTERP_API octave_idx_type xidx_type_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1131
33446
5fded8395daa rename yTYPE_value functions strict_TYPE_value
John W. Eaton <jwe@octave.org>
parents: 33382
diff changeset
1132 OCTINTERP_API octave_idx_type strict_idx_type_value (const char *fmt, ...) const;
33365
fb44a9db1bc6 Replace `xint_value` and related functions with stricter versions (bug #65538)
Arun Giridhar <arungiridhar@gmail.com>
parents: 33244
diff changeset
1133
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1134 OCTINTERP_API double xdouble_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1135
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1136 OCTINTERP_API float xfloat_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1137
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1138 OCTINTERP_API double xscalar_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1139
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1140 OCTINTERP_API float xfloat_scalar_value (const char *fmt, ...) const;
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1141
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1142 OCTINTERP_API Matrix xmatrix_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1143
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1144 OCTINTERP_API FloatMatrix xfloat_matrix_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1145
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1146 OCTINTERP_API NDArray xarray_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1147
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1148 OCTINTERP_API FloatNDArray xfloat_array_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1149
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1150 OCTINTERP_API Complex xcomplex_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1151
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1152 OCTINTERP_API FloatComplex xfloat_complex_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1153
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1154 OCTINTERP_API ComplexMatrix
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1155 xcomplex_matrix_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1156
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1157 OCTINTERP_API FloatComplexMatrix
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1158 xfloat_complex_matrix_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1159
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1160 OCTINTERP_API ComplexNDArray
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1161 xcomplex_array_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1162
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1163 OCTINTERP_API FloatComplexNDArray
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1164 xfloat_complex_array_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1165
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1166 OCTINTERP_API bool xbool_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1167
33446
5fded8395daa rename yTYPE_value functions strict_TYPE_value
John W. Eaton <jwe@octave.org>
parents: 33382
diff changeset
1168 OCTINTERP_API bool strict_bool_value (const char *fmt, ...) const;
33365
fb44a9db1bc6 Replace `xint_value` and related functions with stricter versions (bug #65538)
Arun Giridhar <arungiridhar@gmail.com>
parents: 33244
diff changeset
1169
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1170 OCTINTERP_API boolMatrix xbool_matrix_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1171
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1172 OCTINTERP_API boolNDArray xbool_array_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1173
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1174 OCTINTERP_API charMatrix xchar_matrix_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1175
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1176 OCTINTERP_API charNDArray xchar_array_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1177
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1178 OCTINTERP_API SparseMatrix xsparse_matrix_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1179
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1180 OCTINTERP_API SparseComplexMatrix
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1181 xsparse_complex_matrix_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1182
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1183 OCTINTERP_API SparseBoolMatrix
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1184 xsparse_bool_matrix_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1185
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1186 OCTINTERP_API DiagMatrix xdiag_matrix_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1187
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1188 OCTINTERP_API FloatDiagMatrix
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1189 xfloat_diag_matrix_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1190
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1191 OCTINTERP_API ComplexDiagMatrix
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1192 xcomplex_diag_matrix_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1193
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1194 OCTINTERP_API FloatComplexDiagMatrix
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1195 xfloat_complex_diag_matrix_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1196
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1197 OCTINTERP_API PermMatrix xperm_matrix_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1198
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1199 OCTINTERP_API octave_int8 xint8_scalar_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1200
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1201 OCTINTERP_API octave_int16 xint16_scalar_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1202
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1203 OCTINTERP_API octave_int32 xint32_scalar_value (const char *fmt, ...) const;
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1204
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1205 OCTINTERP_API octave_int64 xint64_scalar_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1206
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1207 OCTINTERP_API octave_uint8 xuint8_scalar_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1208
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1209 OCTINTERP_API octave_uint16 xuint16_scalar_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1210
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1211 OCTINTERP_API octave_uint32 xuint32_scalar_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1212
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1213 OCTINTERP_API octave_uint64 xuint64_scalar_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1214
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1215 OCTINTERP_API int8NDArray xint8_array_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1216
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1217 OCTINTERP_API int16NDArray xint16_array_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1218
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1219 OCTINTERP_API int32NDArray xint32_array_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1220
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1221 OCTINTERP_API int64NDArray xint64_array_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1222
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1223 OCTINTERP_API uint8NDArray xuint8_array_value (const char *fmt, ...) const;
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1224
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1225 OCTINTERP_API uint16NDArray xuint16_array_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1226
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1227 OCTINTERP_API uint32NDArray xuint32_array_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1228
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1229 OCTINTERP_API uint64NDArray xuint64_array_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1230
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1231 OCTINTERP_API std::string xstring_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1232
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1233 OCTINTERP_API string_vector xstring_vector_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1234
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1235 OCTINTERP_API Cell xcell_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1236
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1237 OCTINTERP_API Array<std::string> xcellstr_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1238
30835
2989202f92f8 only allow range<FLOAT> to be instantiated
John W. Eaton <jwe@octave.org>
parents: 30564
diff changeset
1239 OCTINTERP_API octave::range<double>
2989202f92f8 only allow range<FLOAT> to be instantiated
John W. Eaton <jwe@octave.org>
parents: 30564
diff changeset
1240 xrange_value (const char *fmt, ...) const;
2989202f92f8 only allow range<FLOAT> to be instantiated
John W. Eaton <jwe@octave.org>
parents: 30564
diff changeset
1241
31827
c8dd3da44e83 maint: Remove `#if 0` commented-out code from the codebase.
Arun Giridhar <arungiridhar@gmail.com>
parents: 31814
diff changeset
1242 // For now, enable only range<double>.
30835
2989202f92f8 only allow range<FLOAT> to be instantiated
John W. Eaton <jwe@octave.org>
parents: 30564
diff changeset
1243
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1244 OCTINTERP_API octave_map xmap_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1245
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1246 OCTINTERP_API octave_scalar_map
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1247 xscalar_map_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1248
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1249 OCTINTERP_API ColumnVector xcolumn_vector_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1250
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1251 OCTINTERP_API ComplexColumnVector
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1252 xcomplex_column_vector_value (const char *fmt, ...) const;
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1253
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1254 OCTINTERP_API RowVector xrow_vector_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1255
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1256 OCTINTERP_API ComplexRowVector
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1257 xcomplex_row_vector_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1258
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1259 OCTINTERP_API FloatColumnVector
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1260 xfloat_column_vector_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1261
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1262 OCTINTERP_API FloatComplexColumnVector
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1263 xfloat_complex_column_vector_value (const char *fmt, ...) const;
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1264
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1265 OCTINTERP_API FloatRowVector
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1266 xfloat_row_vector_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1267
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1268 OCTINTERP_API FloatComplexRowVector
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1269 xfloat_complex_row_vector_value (const char *fmt, ...) const;
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1270
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1271 OCTINTERP_API Array<int> xint_vector_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1272
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1273 OCTINTERP_API Array<octave_idx_type>
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1274 xoctave_idx_type_vector_value (const char *fmt, ...) const;
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1275
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1276 OCTINTERP_API Array<double> xvector_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1277
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1278 OCTINTERP_API Array<Complex>
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1279 xcomplex_vector_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1280
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1281 OCTINTERP_API Array<float> xfloat_vector_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1282
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1283 OCTINTERP_API Array<FloatComplex>
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1284 xfloat_complex_vector_value (const char *fmt, ...) const;
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1285
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1286 OCTINTERP_API octave_function * xfunction_value (const char *fmt, ...) const;
20703
85e5efae848a eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20700
diff changeset
1287
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1288 OCTINTERP_API octave_user_function *
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1289 xuser_function_value (const char *fmt, ...) const;
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1290
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1291 OCTINTERP_API octave_user_script *
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1292 xuser_script_value (const char *fmt, ...) const;
20741
a5ab31b52ae8 eliminate more uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20704
diff changeset
1293
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1294 OCTINTERP_API octave_user_code *
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1295 xuser_code_value (const char *fmt, ...) const;
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1296
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1297 OCTINTERP_API octave_fcn_handle *
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1298 xfcn_handle_value (const char *fmt, ...) const;
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1299
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1300 OCTINTERP_API octave_value_list xlist_value (const char *fmt, ...) const;
20768
7655b399abff eliminate trailing whitespace in source files we maintain
John W. Eaton <jwe@octave.org>
parents: 20741
diff changeset
1301
8523
ad3afaaa19c1 implement non-copying contiguous range indexing
Jaroslav Hajek <highegg@gmail.com>
parents: 8458
diff changeset
1302 // Possibly economize a lazy-indexed value.
8150
283989f2da9b make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents: 8017
diff changeset
1303
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
1304 void maybe_economize ()
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
1305 { m_rep->maybe_economize (); }
8523
ad3afaaa19c1 implement non-copying contiguous range indexing
Jaroslav Hajek <highegg@gmail.com>
parents: 8458
diff changeset
1306
8531
b01fef323c24 add some explaining comments
Jaroslav Hajek <highegg@gmail.com>
parents: 8523
diff changeset
1307 // The following two hook conversions are called on any octave_value prior to
b01fef323c24 add some explaining comments
Jaroslav Hajek <highegg@gmail.com>
parents: 8523
diff changeset
1308 // storing it to a "permanent" location, like a named variable, a cell or a
11586
12df7854fa7c strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
1309 // struct component, or a return value of a function.
8523
ad3afaaa19c1 implement non-copying contiguous range indexing
Jaroslav Hajek <highegg@gmail.com>
parents: 8458
diff changeset
1310
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
1311 OCTINTERP_API octave_value storable_value () const;
8150
283989f2da9b make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents: 8017
diff changeset
1312
21751
b571fc85953f maint: Use two spaces after period to indicate sentence break.
Rik <rik@octave.org>
parents: 21739
diff changeset
1313 // Ditto, but in place, i.e., equivalent to *this = this->storable_value (),
8531
b01fef323c24 add some explaining comments
Jaroslav Hajek <highegg@gmail.com>
parents: 8523
diff changeset
1314 // but possibly more efficient.
8150
283989f2da9b make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents: 8017
diff changeset
1315
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
1316 OCTINTERP_API void make_storable_value ();
8150
283989f2da9b make null assignment matlab compatible
Jaroslav Hajek <highegg@gmail.com>
parents: 8017
diff changeset
1317
21076
b433f9990452 strip trailing whitespace from files
John W. Eaton <jwe@octave.org>
parents: 21040
diff changeset
1318 // FIXME: These should probably be private.
21013
7f4c6d594e3d Finish renaming mapper function finite to isfinite.
Rik <rik@octave.org>
parents: 21012
diff changeset
1319 // Conversions. If a user of this class wants a certain kind of constant,
7f4c6d594e3d Finish renaming mapper function finite to isfinite.
Rik <rik@octave.org>
parents: 21012
diff changeset
1320 // he should simply ask for it, and we should convert it if possible.
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
1321
5279
bd32f770c09a [project @ 2005-04-12 21:55:31 by jwe]
jwe
parents: 5275
diff changeset
1322 octave_value convert_to_str (bool pad = false, bool force = false,
10313
f3b65e1ae355 untabify src header files
John W. Eaton <jwe@octave.org>
parents: 10293
diff changeset
1323 char type = '\'') const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
1324 { return m_rep->convert_to_str (pad, force, type); }
4452
f3c21a1d1c62 [project @ 2003-07-09 23:20:18 by jwe]
jwe
parents: 4451
diff changeset
1325
5759
ce79d238f142 [project @ 2006-04-13 13:04:32 by jwe]
jwe
parents: 5758
diff changeset
1326 octave_value
5279
bd32f770c09a [project @ 2005-04-12 21:55:31 by jwe]
jwe
parents: 5275
diff changeset
1327 convert_to_str_internal (bool pad, bool force, char type) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
1328 { return m_rep->convert_to_str_internal (pad, force, type); }
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
1329
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
1330 void convert_to_row_or_column_vector ()
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
1331 { m_rep->convert_to_row_or_column_vector (); }
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
1332
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
1333 bool print_as_scalar () const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
1334 { return m_rep->print_as_scalar (); }
4604
cba347c642e2 [project @ 2003-11-13 04:38:05 by jwe]
jwe
parents: 4593
diff changeset
1335
18416
bcd71a2531d3 Support disp/display overloading in classdef
Michael Goffioul <michael.goffioul@gmail.com>
parents: 18402
diff changeset
1336 void print (std::ostream& os, bool pr_as_read_syntax = false)
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
1337 { m_rep->print (os, pr_as_read_syntax); }
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
1338
17787
175b392e91fe Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents: 17744
diff changeset
1339 void print_raw (std::ostream& os, bool pr_as_read_syntax = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
1340 { m_rep->print_raw (os, pr_as_read_syntax); }
2903
facd9d10e5c1 [project @ 1997-04-30 03:53:07 by jwe]
jwe
parents: 2891
diff changeset
1341
5759
ce79d238f142 [project @ 2006-04-13 13:04:32 by jwe]
jwe
parents: 5758
diff changeset
1342 bool print_name_tag (std::ostream& os, const std::string& name) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
1343 { return m_rep->print_name_tag (os, name); }
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
1344
13110
2d5035847529 Add Júlio Hoffimann Mendes to contributors.in
John W. Eaton <jwe@octave.org>
parents: 12171
diff changeset
1345 void print_with_name (std::ostream& os, const std::string& name) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
1346 { m_rep->print_with_name (os, name, true); }
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
1347
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
1348 void short_disp (std::ostream& os) const { m_rep->short_disp (os); }
16468
0f143f68078d use signal/slot for updating workspace instead of using event listener
John W. Eaton <jwe@octave.org>
parents: 16323
diff changeset
1349
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
1350 OCTINTERP_API float_display_format get_edit_display_format () const;
24668
d4dd741b2794 new octave_value functions for formatting output
John W. Eaton <jwe@octave.org>
parents: 24643
diff changeset
1351
d4dd741b2794 new octave_value functions for formatting output
John W. Eaton <jwe@octave.org>
parents: 24643
diff changeset
1352 std::string edit_display (const float_display_format& fmt,
d4dd741b2794 new octave_value functions for formatting output
John W. Eaton <jwe@octave.org>
parents: 24643
diff changeset
1353 octave_idx_type i, octave_idx_type j) const
24643
78aff6f14227 more variable editor improvements; allow more variable types to be edited
John W. Eaton <jwe@octave.org>
parents: 24624
diff changeset
1354 {
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
1355 return m_rep->edit_display (fmt, i, j);
24643
78aff6f14227 more variable editor improvements; allow more variable types to be edited
John W. Eaton <jwe@octave.org>
parents: 24624
diff changeset
1356 }
78aff6f14227 more variable editor improvements; allow more variable types to be edited
John W. Eaton <jwe@octave.org>
parents: 24624
diff changeset
1357
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
1358 int type_id () const { return m_rep->type_id (); }
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
1359
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
1360 std::string type_name () const { return m_rep->type_name (); }
5759
ce79d238f142 [project @ 2006-04-13 13:04:32 by jwe]
jwe
parents: 5758
diff changeset
1361
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
1362 std::string class_name () const { return m_rep->class_name (); }
4612
d44675070f1a [project @ 2003-11-14 19:49:56 by jwe]
jwe
parents: 4604
diff changeset
1363
28631
70cdf8de553d move non-member octave_value operator functions to octave namespace
John W. Eaton <jwe@octave.org>
parents: 28588
diff changeset
1364 // Unary operations that are member functions. There are also some
70cdf8de553d move non-member octave_value operator functions to octave namespace
John W. Eaton <jwe@octave.org>
parents: 28588
diff changeset
1365 // non-member functions for unary and binary operations declared
70cdf8de553d move non-member octave_value operator functions to octave namespace
John W. Eaton <jwe@octave.org>
parents: 28588
diff changeset
1366 // below, outside of the octave_value class declaration.
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
1367
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1368 OCTINTERP_API octave_value& non_const_unary_op (unary_op op);
7800
5861b95e9879 support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents: 7789
diff changeset
1369
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1370 OCTINTERP_API octave_value&
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1371 non_const_unary_op (unary_op op, const std::string& type,
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1372 const std::list<octave_value_list>& idx);
28631
70cdf8de553d move non-member octave_value operator functions to octave namespace
John W. Eaton <jwe@octave.org>
parents: 28588
diff changeset
1373
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
1374 const octave_base_value& get_rep () const { return *m_rep; }
3301
02866242d3ae [project @ 1999-10-20 04:10:46 by jwe]
jwe
parents: 3240
diff changeset
1375
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
1376 bool is_copy_of (const octave_value& val) const { return m_rep == val.m_rep; }
8456
c1709a45b45b optimize structure components access
Jaroslav Hajek <highegg@gmail.com>
parents: 8437
diff changeset
1377
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1378 OCTINTERP_API void
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1379 print_info (std::ostream& os, const std::string& prefix = "") const;
3933
f9ea3dcf58ee [project @ 2002-05-15 03:21:00 by jwe]
jwe
parents: 3930
diff changeset
1380
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
1381 bool save_ascii (std::ostream& os) { return m_rep->save_ascii (os); }
4687
e95c86d48732 [project @ 2004-01-06 21:53:34 by jwe]
jwe
parents: 4665
diff changeset
1382
30852
95725e6ad9c1 restore part of the old octave_range class as octave_legacy_range
John W. Eaton <jwe@octave.org>
parents: 30835
diff changeset
1383 OCTINTERP_API bool load_ascii (std::istream& is);
4687
e95c86d48732 [project @ 2004-01-06 21:53:34 by jwe]
jwe
parents: 4665
diff changeset
1384
26399
586413770c7f pass save_as_floats by value in octave_value save_binary functions
John W. Eaton <jwe@octave.org>
parents: 26377
diff changeset
1385 bool save_binary (std::ostream& os, bool save_as_floats)
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
1386 { return m_rep->save_binary (os, save_as_floats); }
4687
e95c86d48732 [project @ 2004-01-06 21:53:34 by jwe]
jwe
parents: 4665
diff changeset
1387
30852
95725e6ad9c1 restore part of the old octave_range class as octave_legacy_range
John W. Eaton <jwe@octave.org>
parents: 30835
diff changeset
1388 OCTINTERP_API bool load_binary (std::istream& is, bool swap,
95725e6ad9c1 restore part of the old octave_range class as octave_legacy_range
John W. Eaton <jwe@octave.org>
parents: 30835
diff changeset
1389 octave::mach_info::float_format fmt);
4687
e95c86d48732 [project @ 2004-01-06 21:53:34 by jwe]
jwe
parents: 4665
diff changeset
1390
19863
09ed6f7538dd avoid needing to include hdf5 in public header files (bug #44370, #43180)
John W. Eaton <jwe@octave.org> and Mike Miller <mtmiller@ieee.org>
parents: 19749
diff changeset
1391 bool save_hdf5 (octave_hdf5_id loc_id, const char *name,
09ed6f7538dd avoid needing to include hdf5 in public header files (bug #44370, #43180)
John W. Eaton <jwe@octave.org> and Mike Miller <mtmiller@ieee.org>
parents: 19749
diff changeset
1392 bool save_as_floats)
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
1393 { return m_rep->save_hdf5 (loc_id, name, save_as_floats); }
4687
e95c86d48732 [project @ 2004-01-06 21:53:34 by jwe]
jwe
parents: 4665
diff changeset
1394
30852
95725e6ad9c1 restore part of the old octave_range class as octave_legacy_range
John W. Eaton <jwe@octave.org>
parents: 30835
diff changeset
1395 OCTINTERP_API bool load_hdf5 (octave_hdf5_id loc_id, const char *name);
4687
e95c86d48732 [project @ 2004-01-06 21:53:34 by jwe]
jwe
parents: 4665
diff changeset
1396
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1397 OCTINTERP_API int
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1398 write (octave::stream& os, int block_size,
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1399 oct_data_conv::data_type output_type, int skip,
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1400 octave::mach_info::float_format flt_fmt) const;
4944
44046bbaa52c [project @ 2004-08-31 05:30:46 by jwe]
jwe
parents: 4933
diff changeset
1401
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
1402 octave_base_value * internal_rep () const { return m_rep; }
4901
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents: 4791
diff changeset
1403
30232
a2936935c7c8 attempt to limit possible const_cast damage
John W. Eaton <jwe@octave.org>
parents: 30139
diff changeset
1404 // These functions exist to support the MEX interface.
5900
c20eb7330d13 [project @ 2006-07-22 08:31:16 by jwe]
jwe
parents: 5895
diff changeset
1405 // You should not use them anywhere else.
30232
a2936935c7c8 attempt to limit possible const_cast damage
John W. Eaton <jwe@octave.org>
parents: 30139
diff changeset
1406
a2936935c7c8 attempt to limit possible const_cast damage
John W. Eaton <jwe@octave.org>
parents: 30139
diff changeset
1407 OCTINTERP_API const void *
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1408 mex_get_data (mxClassID class_id = mxUNKNOWN_CLASS,
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1409 mxComplexity complexity = mxREAL) const;
5900
c20eb7330d13 [project @ 2006-07-22 08:31:16 by jwe]
jwe
parents: 5895
diff changeset
1410
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
1411 const octave_idx_type * mex_get_ir () const
30232
a2936935c7c8 attempt to limit possible const_cast damage
John W. Eaton <jwe@octave.org>
parents: 30139
diff changeset
1412 {
a2936935c7c8 attempt to limit possible const_cast damage
John W. Eaton <jwe@octave.org>
parents: 30139
diff changeset
1413 return m_rep->mex_get_ir ();
a2936935c7c8 attempt to limit possible const_cast damage
John W. Eaton <jwe@octave.org>
parents: 30139
diff changeset
1414 }
5900
c20eb7330d13 [project @ 2006-07-22 08:31:16 by jwe]
jwe
parents: 5895
diff changeset
1415
30232
a2936935c7c8 attempt to limit possible const_cast damage
John W. Eaton <jwe@octave.org>
parents: 30139
diff changeset
1416 const octave_idx_type *
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
1417 mex_get_jc () const
30232
a2936935c7c8 attempt to limit possible const_cast damage
John W. Eaton <jwe@octave.org>
parents: 30139
diff changeset
1418 {
a2936935c7c8 attempt to limit possible const_cast damage
John W. Eaton <jwe@octave.org>
parents: 30139
diff changeset
1419 return m_rep->mex_get_jc ();
a2936935c7c8 attempt to limit possible const_cast damage
John W. Eaton <jwe@octave.org>
parents: 30139
diff changeset
1420 }
5900
c20eb7330d13 [project @ 2006-07-22 08:31:16 by jwe]
jwe
parents: 5895
diff changeset
1421
28126
4c21f99b4ad5 handle interleaved complex data and new typed data access functions for mex
John W. Eaton <jwe@octave.org>
parents: 28123
diff changeset
1422 mxArray * as_mxArray (bool interleaved = false) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
1423 { return m_rep->as_mxArray (interleaved); }
5900
c20eb7330d13 [project @ 2006-07-22 08:31:16 by jwe]
jwe
parents: 5895
diff changeset
1424
7620
36594d5bbe13 Move diag function into the octave_value class
David Bateman <dbateman@free.fr>
parents: 7576
diff changeset
1425 octave_value diag (octave_idx_type k = 0) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
1426 { return m_rep->diag (k); }
7620
36594d5bbe13 Move diag function into the octave_value class
David Bateman <dbateman@free.fr>
parents: 7576
diff changeset
1427
14557
e8e86ae3abbc make diag (x, m, n) return a proper diagonal matrix object (bug #36099)
John W. Eaton <jwe@octave.org>
parents: 14528
diff changeset
1428 octave_value diag (octave_idx_type m, octave_idx_type n) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
1429 { return m_rep->diag (m, n); }
14557
e8e86ae3abbc make diag (x, m, n) return a proper diagonal matrix object (bug #36099)
John W. Eaton <jwe@octave.org>
parents: 14528
diff changeset
1430
7463
2467639bd8c0 eliminate UNDEFINED sort mode
John W. Eaton <jwe@octave.org>
parents: 7433
diff changeset
1431 octave_value sort (octave_idx_type dim = 0, sortmode mode = ASCENDING) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
1432 { return m_rep->sort (dim, mode); }
30390
a61e1a0f6024 maint: style check C++ files in libinterp/ ahead of 7.1 release.
Rik <rik@octave.org>
parents: 30232
diff changeset
1433 octave_value sort (Array<octave_idx_type>& sidx, octave_idx_type dim = 0,
17787
175b392e91fe Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents: 17744
diff changeset
1434 sortmode mode = ASCENDING) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
1435 { return m_rep->sort (sidx, dim, mode); }
7433
402168152bb9 [project @ 2008-01-31 18:59:09 by dbateman]
dbateman
parents: 7336
diff changeset
1436
23588
0549061d35b9 maint: Deprecate is_sorted and replace with issorted.
Rik <rik@octave.org>
parents: 23587
diff changeset
1437 sortmode issorted (sortmode mode = UNSORTED) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
1438 { return m_rep->issorted (mode); }
23588
0549061d35b9 maint: Deprecate is_sorted and replace with issorted.
Rik <rik@octave.org>
parents: 23587
diff changeset
1439
8733
3ef774603887 rename all uses of sortrows_idx to sort_rows_idx
John W. Eaton <jwe@octave.org>
parents: 8732
diff changeset
1440 Array<octave_idx_type> sort_rows_idx (sortmode mode = ASCENDING) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
1441 { return m_rep->sort_rows_idx (mode); }
8721
e9cb742df9eb imported patch sort3.diff
Jaroslav Hajek <highegg@gmail.com>
parents: 8676
diff changeset
1442
8734
767ed8cc6634 rename internal issorted and issorted_rows functions to is_sorted and is_sorted_rows
John W. Eaton <jwe@octave.org>
parents: 8733
diff changeset
1443 sortmode is_sorted_rows (sortmode mode = UNSORTED) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
1444 { return m_rep->is_sorted_rows (mode); }
8721
e9cb742df9eb imported patch sort3.diff
Jaroslav Hajek <highegg@gmail.com>
parents: 8676
diff changeset
1445
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
1446 void lock () { m_rep->lock (); }
7489
8e4592e49fa7 don't clear locked functions
John W. Eaton <jwe@octave.org>
parents: 7463
diff changeset
1447
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
1448 void unlock () { m_rep->unlock (); }
7489
8e4592e49fa7 don't clear locked functions
John W. Eaton <jwe@octave.org>
parents: 7463
diff changeset
1449
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
1450 bool islocked () const { return m_rep->islocked (); }
7489
8e4592e49fa7 don't clear locked functions
John W. Eaton <jwe@octave.org>
parents: 7463
diff changeset
1451
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
1452 void call_object_destructor () { return m_rep->call_object_destructor (); }
26655
cca0548f7b86 refactor calling object destructor
John W. Eaton <jwe@octave.org>
parents: 26399
diff changeset
1453
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
1454 octave_value dump () const { return m_rep->dump (); }
7761
5adeea5de26c symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents: 7740
diff changeset
1455
9813
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1456 #define MAPPER_FORWARD(F) \
31771
21f9b34eb893 maint: Eliminate "(void)" in C++ function prototypes/declarations.
Rik <rik@octave.org>
parents: 31707
diff changeset
1457 octave_value F () const \
22197
e43d83253e28 refill multi-line macro definitions
John W. Eaton <jwe@octave.org>
parents: 22022
diff changeset
1458 { \
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
1459 return m_rep->map (octave_base_value::umap_ ## F); \
22197
e43d83253e28 refill multi-line macro definitions
John W. Eaton <jwe@octave.org>
parents: 22022
diff changeset
1460 }
9813
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1461
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1462 MAPPER_FORWARD (abs)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1463 MAPPER_FORWARD (acos)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1464 MAPPER_FORWARD (acosh)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1465 MAPPER_FORWARD (angle)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1466 MAPPER_FORWARD (arg)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1467 MAPPER_FORWARD (asin)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1468 MAPPER_FORWARD (asinh)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1469 MAPPER_FORWARD (atan)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1470 MAPPER_FORWARD (atanh)
10414
2a8b1db1e2ca implement built-in cbrt
Jaroslav Hajek <highegg@gmail.com>
parents: 10391
diff changeset
1471 MAPPER_FORWARD (cbrt)
9813
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1472 MAPPER_FORWARD (ceil)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1473 MAPPER_FORWARD (conj)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1474 MAPPER_FORWARD (cos)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1475 MAPPER_FORWARD (cosh)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1476 MAPPER_FORWARD (erf)
9835
1bb1ed717d2f implement built-in erfinv
Jaroslav Hajek <highegg@gmail.com>
parents: 9813
diff changeset
1477 MAPPER_FORWARD (erfinv)
14770
cb85e836d035 New function: erfcinv (bug #36607)
Axel Mathéi <axel.mathei@gmail.com>
parents: 14557
diff changeset
1478 MAPPER_FORWARD (erfcinv)
9813
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1479 MAPPER_FORWARD (erfc)
10391
59e34bcdff13 implement built-in erfcx
Jaroslav Hajek <highegg@gmail.com>
parents: 10325
diff changeset
1480 MAPPER_FORWARD (erfcx)
15696
2fac72a256ce Add complex erf,erfc,erfcx,erfi,dawson routines from Faddeeva package.
Steven G. Johnson <stevenj@alum.mit.edu>
parents: 15487
diff changeset
1481 MAPPER_FORWARD (erfi)
2fac72a256ce Add complex erf,erfc,erfcx,erfi,dawson routines from Faddeeva package.
Steven G. Johnson <stevenj@alum.mit.edu>
parents: 15487
diff changeset
1482 MAPPER_FORWARD (dawson)
9813
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1483 MAPPER_FORWARD (exp)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1484 MAPPER_FORWARD (expm1)
21013
7f4c6d594e3d Finish renaming mapper function finite to isfinite.
Rik <rik@octave.org>
parents: 21012
diff changeset
1485 MAPPER_FORWARD (isfinite)
9813
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1486 MAPPER_FORWARD (fix)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1487 MAPPER_FORWARD (floor)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1488 MAPPER_FORWARD (gamma)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1489 MAPPER_FORWARD (imag)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1490 MAPPER_FORWARD (isinf)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1491 MAPPER_FORWARD (isna)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1492 MAPPER_FORWARD (isnan)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1493 MAPPER_FORWARD (lgamma)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1494 MAPPER_FORWARD (log)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1495 MAPPER_FORWARD (log2)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1496 MAPPER_FORWARD (log10)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1497 MAPPER_FORWARD (log1p)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1498 MAPPER_FORWARD (real)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1499 MAPPER_FORWARD (round)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1500 MAPPER_FORWARD (roundb)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1501 MAPPER_FORWARD (signum)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1502 MAPPER_FORWARD (sin)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1503 MAPPER_FORWARD (sinh)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1504 MAPPER_FORWARD (sqrt)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1505 MAPPER_FORWARD (tan)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1506 MAPPER_FORWARD (tanh)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1507
21013
7f4c6d594e3d Finish renaming mapper function finite to isfinite.
Rik <rik@octave.org>
parents: 21012
diff changeset
1508 // These functions are prefixed with X to avoid potential macro conflicts.
9813
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1509
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1510 MAPPER_FORWARD (xisalnum)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1511 MAPPER_FORWARD (xisalpha)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1512 MAPPER_FORWARD (xisascii)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1513 MAPPER_FORWARD (xiscntrl)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1514 MAPPER_FORWARD (xisdigit)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1515 MAPPER_FORWARD (xisgraph)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1516 MAPPER_FORWARD (xislower)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1517 MAPPER_FORWARD (xisprint)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1518 MAPPER_FORWARD (xispunct)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1519 MAPPER_FORWARD (xisspace)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1520 MAPPER_FORWARD (xisupper)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1521 MAPPER_FORWARD (xisxdigit)
15487
ecf5be238b4a provide signbit mapper for real values
John W. Eaton <jwe@octave.org>
parents: 15429
diff changeset
1522 MAPPER_FORWARD (xsignbit)
9813
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1523 MAPPER_FORWARD (xtolower)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1524 MAPPER_FORWARD (xtoupper)
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1525
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1526 #undef MAPPER_FORWARD
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1527
8fa32b527d9a improve & partially revert previous change
Jaroslav Hajek <highegg@gmail.com>
parents: 9812
diff changeset
1528 octave_value map (octave_base_value::unary_mapper_t umap) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
1529 { return m_rep->map (umap); }
7503
8c32f95c2639 convert mapper functions to new format
David Bateman <dbateman@free.fr>
parents: 7489
diff changeset
1530
27216
823b4bcf79fc unless necessary for formatting or code, use ' instead of `
John W. Eaton <jwe@octave.org>
parents: 26922
diff changeset
1531 //! Extract the n-th element, aka 'val(n)'.
24624
ce2eb28e0a6d doc: make all Doxygen comment blocks more consistent
Mike Miller <mtmiller@octave.org>
parents: 24620
diff changeset
1532 //!
27216
823b4bcf79fc unless necessary for formatting or code, use ' instead of `
John W. Eaton <jwe@octave.org>
parents: 26922
diff changeset
1533 //! @return Result is undefined if 'val' is not an array type
24624
ce2eb28e0a6d doc: make all Doxygen comment blocks more consistent
Mike Miller <mtmiller@octave.org>
parents: 24620
diff changeset
1534 //! or @p n is out of range.
ce2eb28e0a6d doc: make all Doxygen comment blocks more consistent
Mike Miller <mtmiller@octave.org>
parents: 24620
diff changeset
1535 //!
ce2eb28e0a6d doc: make all Doxygen comment blocks more consistent
Mike Miller <mtmiller@octave.org>
parents: 24620
diff changeset
1536 //! @warning Function calls should never error.
ce2eb28e0a6d doc: make all Doxygen comment blocks more consistent
Mike Miller <mtmiller@octave.org>
parents: 24620
diff changeset
1537
10670
654fbde5dceb make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents: 10614
diff changeset
1538 octave_value
654fbde5dceb make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents: 10614
diff changeset
1539 fast_elem_extract (octave_idx_type n) const
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
1540 { return m_rep->fast_elem_extract (n); }
10670
654fbde5dceb make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents: 10614
diff changeset
1541
27216
823b4bcf79fc unless necessary for formatting or code, use ' instead of `
John W. Eaton <jwe@octave.org>
parents: 26922
diff changeset
1542 //! Assign the n-th element, aka 'val(n) = x'.
24624
ce2eb28e0a6d doc: make all Doxygen comment blocks more consistent
Mike Miller <mtmiller@octave.org>
parents: 24620
diff changeset
1543 //!
27216
823b4bcf79fc unless necessary for formatting or code, use ' instead of `
John W. Eaton <jwe@octave.org>
parents: 26922
diff changeset
1544 //! @returns false if 'val' is not an array type,
24624
ce2eb28e0a6d doc: make all Doxygen comment blocks more consistent
Mike Miller <mtmiller@octave.org>
parents: 24620
diff changeset
1545 //! @p x is not a matching scalar type,
ce2eb28e0a6d doc: make all Doxygen comment blocks more consistent
Mike Miller <mtmiller@octave.org>
parents: 24620
diff changeset
1546 //! or @p n is out of range.
ce2eb28e0a6d doc: make all Doxygen comment blocks more consistent
Mike Miller <mtmiller@octave.org>
parents: 24620
diff changeset
1547 //!
ce2eb28e0a6d doc: make all Doxygen comment blocks more consistent
Mike Miller <mtmiller@octave.org>
parents: 24620
diff changeset
1548 //! @warning Function calls should never error.
ce2eb28e0a6d doc: make all Doxygen comment blocks more consistent
Mike Miller <mtmiller@octave.org>
parents: 24620
diff changeset
1549
24040
8e8dbabd6e84 ov.h(fast_elem_insert): Remove "virtual" declaration.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 23913
diff changeset
1550 bool
10670
654fbde5dceb make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents: 10614
diff changeset
1551 fast_elem_insert (octave_idx_type n, const octave_value& x)
17787
175b392e91fe Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents: 17744
diff changeset
1552 {
175b392e91fe Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents: 17744
diff changeset
1553 make_unique ();
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
1554 return m_rep->fast_elem_insert (n, x);
17787
175b392e91fe Use GNU style coding conventions for code in libinterp/
Rik <rik@octave.org>
parents: 17744
diff changeset
1555 }
10670
654fbde5dceb make cellfun's fast scalar collection mechanism public
Jaroslav Hajek <highegg@gmail.com>
parents: 10614
diff changeset
1556
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
1557 protected:
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
1558
32531
435cfe35e3c6 disable building bytecode evaluator by default (bug #64977)
John W. Eaton <jwe@octave.org>
parents: 32511
diff changeset
1559 //! The real representation.
30128
5616702bffac maint: use "m_" prefix for member variable "m_rep" in class octave_value.
Rik <rik@octave.org>
parents: 30012
diff changeset
1560 octave_base_value *m_rep;
2413
44753e0cadf2 [project @ 1996-10-15 17:02:26 by jwe]
jwe
parents: 2410
diff changeset
1561
32838
54475b490e22 Backed out changeset 6cf9a8c9010c
Arun Giridhar <arungiridhar@gmail.com>
parents: 32835
diff changeset
1562 static OCTINTERP_API octave_base_value * nil_rep ();
2903
facd9d10e5c1 [project @ 1997-04-30 03:53:07 by jwe]
jwe
parents: 2891
diff changeset
1563
32142
53ba75432f02 allow public access to octave_base_value nil_rep object
Petter T. <petter.vilhelm@gmail.com>
parents: 32141
diff changeset
1564 private:
21573
f3f8e1d3e399 avoid mulitple definitions of static function-scope vars (bug #47372)
John W. Eaton <jwe@octave.org>
parents: 20087
diff changeset
1565
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1566 OCTINTERP_API assign_op unary_op_to_assign_op (unary_op op);
3205
549691faa638 [project @ 1998-10-31 04:20:15 by jwe]
jwe
parents: 3204
diff changeset
1567
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1568 OCTINTERP_API binary_op op_eq_to_binary_op (assign_op op);
3204
81738e630f57 [project @ 1998-10-30 23:28:29 by jwe]
jwe
parents: 3203
diff changeset
1569
9521
e08d72bb988e simplify cloning
Jaroslav Hajek <highegg@gmail.com>
parents: 9479
diff changeset
1570 // This declaration protects against constructing octave_value from
e08d72bb988e simplify cloning
Jaroslav Hajek <highegg@gmail.com>
parents: 9479
diff changeset
1571 // const octave_base_value* which actually silently calls octave_value (bool).
29234
853e60367cb6 Set API tags in files in libinterp/octave-value (patch #8919).
Markus Mützel <markus.muetzel@gmx.de>
parents: 28900
diff changeset
1572 OCTINTERP_API octave_value (const octave_base_value *);
9521
e08d72bb988e simplify cloning
Jaroslav Hajek <highegg@gmail.com>
parents: 9479
diff changeset
1573
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
1574 };
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
1575
28631
70cdf8de553d move non-member octave_value operator functions to octave namespace
John W. Eaton <jwe@octave.org>
parents: 28588
diff changeset
1576 // Non-member unary and binary operations on octave_value objects.
70cdf8de553d move non-member octave_value operator functions to octave namespace
John W. Eaton <jwe@octave.org>
parents: 28588
diff changeset
1577
31605
e88a07dec498 maint: Use macros to begin/end C++ namespaces.
Rik <rik@octave.org>
parents: 31260
diff changeset
1578 OCTAVE_BEGIN_NAMESPACE(octave)
29960
939bef0b66e0 merge "namespace octave" and OCTAVE_NAMESPACE_BEGIN/END blocks
John W. Eaton <jwe@octave.org>
parents: 29954
diff changeset
1579
31607
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1580 extern OCTINTERP_API octave_value
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1581 unary_op (type_info& ti, octave_value::unary_op op,
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1582 const octave_value& a);
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1583
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1584 extern OCTINTERP_API octave_value
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1585 unary_op (octave_value::unary_op op, const octave_value& a);
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1586
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1587 extern OCTINTERP_API octave_value
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1588 binary_op (type_info& ti, octave_value::binary_op op,
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1589 const octave_value& a, const octave_value& b);
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1590
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1591 extern OCTINTERP_API octave_value
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1592 binary_op (type_info& ti, octave_value::compound_binary_op op,
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1593 const octave_value& a, const octave_value& b);
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1594
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1595 extern OCTINTERP_API octave_value
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1596 binary_op (octave_value::binary_op op, const octave_value& a,
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1597 const octave_value& b);
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1598
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1599 extern OCTINTERP_API octave_value
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1600 binary_op (octave_value::compound_binary_op op, const octave_value& a,
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1601 const octave_value& b);
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1602
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1603 extern OCTINTERP_API octave_value
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1604 cat_op (type_info& ti, const octave_value& a,
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1605 const octave_value& b, const Array<octave_idx_type>& ra_idx);
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1606
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1607 extern OCTINTERP_API octave_value
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1608 cat_op (const octave_value& a, const octave_value& b,
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1609 const Array<octave_idx_type>& ra_idx);
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1610
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1611 extern OCTINTERP_API octave_value
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1612 colon_op (const octave_value& base, const octave_value& increment,
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1613 const octave_value& limit, bool is_for_cmd_expr = false);
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1614
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1615 inline octave_value
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1616 colon_op (const octave_value& base, const octave_value& limit,
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1617 bool is_for_cmd_expr = false)
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1618 {
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1619 // Note, we need to pass an undefined octave_value object instead of
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1620 // octave_value (1.0) so that we can properly detect the
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1621 // two-argument case and correctly pass just two arguments to any
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1622 // user-defined function that is provided if either base or limit is
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1623 // an object.
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1624
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1625 return colon_op (base, octave_value (), limit, is_for_cmd_expr);
aac27ad79be6 maint: Re-indent code after switch to using namespace macros.
Rik <rik@octave.org>
parents: 31605
diff changeset
1626 }
29960
939bef0b66e0 merge "namespace octave" and OCTAVE_NAMESPACE_BEGIN/END blocks
John W. Eaton <jwe@octave.org>
parents: 29954
diff changeset
1627
31605
e88a07dec498 maint: Use macros to begin/end C++ namespaces.
Rik <rik@octave.org>
parents: 31260
diff changeset
1628 OCTAVE_END_NAMESPACE(octave)
28631
70cdf8de553d move non-member octave_value operator functions to octave namespace
John W. Eaton <jwe@octave.org>
parents: 28588
diff changeset
1629
70cdf8de553d move non-member octave_value operator functions to octave namespace
John W. Eaton <jwe@octave.org>
parents: 28588
diff changeset
1630 #define OV_UNOP_FN(name) \
70cdf8de553d move non-member octave_value operator functions to octave namespace
John W. Eaton <jwe@octave.org>
parents: 28588
diff changeset
1631 inline octave_value \
70cdf8de553d move non-member octave_value operator functions to octave namespace
John W. Eaton <jwe@octave.org>
parents: 28588
diff changeset
1632 name (const octave_value& a) \
70cdf8de553d move non-member octave_value operator functions to octave namespace
John W. Eaton <jwe@octave.org>
parents: 28588
diff changeset
1633 { \
70cdf8de553d move non-member octave_value operator functions to octave namespace
John W. Eaton <jwe@octave.org>
parents: 28588
diff changeset
1634 return octave::unary_op (octave_value::name, a); \
3203
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 3202
diff changeset
1635 }
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 3202
diff changeset
1636
22197
e43d83253e28 refill multi-line macro definitions
John W. Eaton <jwe@octave.org>
parents: 22022
diff changeset
1637 #define OV_UNOP_OP(name, op) \
e43d83253e28 refill multi-line macro definitions
John W. Eaton <jwe@octave.org>
parents: 22022
diff changeset
1638 inline octave_value \
e43d83253e28 refill multi-line macro definitions
John W. Eaton <jwe@octave.org>
parents: 22022
diff changeset
1639 operator op (const octave_value& a) \
e43d83253e28 refill multi-line macro definitions
John W. Eaton <jwe@octave.org>
parents: 22022
diff changeset
1640 { \
e43d83253e28 refill multi-line macro definitions
John W. Eaton <jwe@octave.org>
parents: 22022
diff changeset
1641 return name (a); \
3203
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 3202
diff changeset
1642 }
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 3202
diff changeset
1643
22197
e43d83253e28 refill multi-line macro definitions
John W. Eaton <jwe@octave.org>
parents: 22022
diff changeset
1644 #define OV_UNOP_FN_OP(name, op) \
e43d83253e28 refill multi-line macro definitions
John W. Eaton <jwe@octave.org>
parents: 22022
diff changeset
1645 OV_UNOP_FN (name) \
3203
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 3202
diff changeset
1646 OV_UNOP_OP (name, op)
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 3202
diff changeset
1647
3525
6cfa474c5b99 [project @ 2000-02-02 10:48:41 by jwe]
jwe
parents: 3523
diff changeset
1648 OV_UNOP_FN_OP (op_not, !)
6518
952c8b00525e [project @ 2007-04-11 20:50:22 by jwe]
jwe
parents: 6338
diff changeset
1649 OV_UNOP_FN_OP (op_uplus, +)
3525
6cfa474c5b99 [project @ 2000-02-02 10:48:41 by jwe]
jwe
parents: 3523
diff changeset
1650 OV_UNOP_FN_OP (op_uminus, -)
3203
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 3202
diff changeset
1651
3525
6cfa474c5b99 [project @ 2000-02-02 10:48:41 by jwe]
jwe
parents: 3523
diff changeset
1652 OV_UNOP_FN (op_transpose)
6cfa474c5b99 [project @ 2000-02-02 10:48:41 by jwe]
jwe
parents: 3523
diff changeset
1653 OV_UNOP_FN (op_hermitian)
3203
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 3202
diff changeset
1654
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 3202
diff changeset
1655 // No simple way to define these for prefix and suffix ops?
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 3202
diff changeset
1656 //
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 3202
diff changeset
1657 // incr
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 3202
diff changeset
1658 // decr
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 3202
diff changeset
1659
28631
70cdf8de553d move non-member octave_value operator functions to octave namespace
John W. Eaton <jwe@octave.org>
parents: 28588
diff changeset
1660 #define OV_BINOP_FN(name) \
70cdf8de553d move non-member octave_value operator functions to octave namespace
John W. Eaton <jwe@octave.org>
parents: 28588
diff changeset
1661 inline octave_value \
70cdf8de553d move non-member octave_value operator functions to octave namespace
John W. Eaton <jwe@octave.org>
parents: 28588
diff changeset
1662 name (const octave_value& a1, const octave_value& a2) \
70cdf8de553d move non-member octave_value operator functions to octave namespace
John W. Eaton <jwe@octave.org>
parents: 28588
diff changeset
1663 { \
70cdf8de553d move non-member octave_value operator functions to octave namespace
John W. Eaton <jwe@octave.org>
parents: 28588
diff changeset
1664 return octave::binary_op (octave_value::name, a1, a2); \
3203
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 3202
diff changeset
1665 }
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 3202
diff changeset
1666
22197
e43d83253e28 refill multi-line macro definitions
John W. Eaton <jwe@octave.org>
parents: 22022
diff changeset
1667 #define OV_BINOP_OP(name, op) \
e43d83253e28 refill multi-line macro definitions
John W. Eaton <jwe@octave.org>
parents: 22022
diff changeset
1668 inline octave_value \
e43d83253e28 refill multi-line macro definitions
John W. Eaton <jwe@octave.org>
parents: 22022
diff changeset
1669 operator op (const octave_value& a1, const octave_value& a2) \
e43d83253e28 refill multi-line macro definitions
John W. Eaton <jwe@octave.org>
parents: 22022
diff changeset
1670 { \
e43d83253e28 refill multi-line macro definitions
John W. Eaton <jwe@octave.org>
parents: 22022
diff changeset
1671 return name (a1, a2); \
3203
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 3202
diff changeset
1672 }
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 3202
diff changeset
1673
22197
e43d83253e28 refill multi-line macro definitions
John W. Eaton <jwe@octave.org>
parents: 22022
diff changeset
1674 #define OV_BINOP_FN_OP(name, op) \
e43d83253e28 refill multi-line macro definitions
John W. Eaton <jwe@octave.org>
parents: 22022
diff changeset
1675 OV_BINOP_FN (name) \
3203
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 3202
diff changeset
1676 OV_BINOP_OP (name, op)
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 3202
diff changeset
1677
3525
6cfa474c5b99 [project @ 2000-02-02 10:48:41 by jwe]
jwe
parents: 3523
diff changeset
1678 OV_BINOP_FN_OP (op_add, +)
6cfa474c5b99 [project @ 2000-02-02 10:48:41 by jwe]
jwe
parents: 3523
diff changeset
1679 OV_BINOP_FN_OP (op_sub, -)
6cfa474c5b99 [project @ 2000-02-02 10:48:41 by jwe]
jwe
parents: 3523
diff changeset
1680 OV_BINOP_FN_OP (op_mul, *)
6cfa474c5b99 [project @ 2000-02-02 10:48:41 by jwe]
jwe
parents: 3523
diff changeset
1681 OV_BINOP_FN_OP (op_div, /)
3203
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 3202
diff changeset
1682
3525
6cfa474c5b99 [project @ 2000-02-02 10:48:41 by jwe]
jwe
parents: 3523
diff changeset
1683 OV_BINOP_FN (op_pow)
6cfa474c5b99 [project @ 2000-02-02 10:48:41 by jwe]
jwe
parents: 3523
diff changeset
1684 OV_BINOP_FN (op_ldiv)
3203
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 3202
diff changeset
1685
3525
6cfa474c5b99 [project @ 2000-02-02 10:48:41 by jwe]
jwe
parents: 3523
diff changeset
1686 OV_BINOP_FN_OP (op_lt, <)
6cfa474c5b99 [project @ 2000-02-02 10:48:41 by jwe]
jwe
parents: 3523
diff changeset
1687 OV_BINOP_FN_OP (op_le, <=)
6cfa474c5b99 [project @ 2000-02-02 10:48:41 by jwe]
jwe
parents: 3523
diff changeset
1688 OV_BINOP_FN_OP (op_eq, ==)
6cfa474c5b99 [project @ 2000-02-02 10:48:41 by jwe]
jwe
parents: 3523
diff changeset
1689 OV_BINOP_FN_OP (op_ge, >=)
6cfa474c5b99 [project @ 2000-02-02 10:48:41 by jwe]
jwe
parents: 3523
diff changeset
1690 OV_BINOP_FN_OP (op_gt, >)
6cfa474c5b99 [project @ 2000-02-02 10:48:41 by jwe]
jwe
parents: 3523
diff changeset
1691 OV_BINOP_FN_OP (op_ne, !=)
3203
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 3202
diff changeset
1692
3525
6cfa474c5b99 [project @ 2000-02-02 10:48:41 by jwe]
jwe
parents: 3523
diff changeset
1693 OV_BINOP_FN (op_el_mul)
6cfa474c5b99 [project @ 2000-02-02 10:48:41 by jwe]
jwe
parents: 3523
diff changeset
1694 OV_BINOP_FN (op_el_div)
6cfa474c5b99 [project @ 2000-02-02 10:48:41 by jwe]
jwe
parents: 3523
diff changeset
1695 OV_BINOP_FN (op_el_pow)
6cfa474c5b99 [project @ 2000-02-02 10:48:41 by jwe]
jwe
parents: 3523
diff changeset
1696 OV_BINOP_FN (op_el_ldiv)
6cfa474c5b99 [project @ 2000-02-02 10:48:41 by jwe]
jwe
parents: 3523
diff changeset
1697 OV_BINOP_FN (op_el_and)
6cfa474c5b99 [project @ 2000-02-02 10:48:41 by jwe]
jwe
parents: 3523
diff changeset
1698 OV_BINOP_FN (op_el_or)
3203
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 3202
diff changeset
1699
3525
6cfa474c5b99 [project @ 2000-02-02 10:48:41 by jwe]
jwe
parents: 3523
diff changeset
1700 OV_BINOP_FN (op_struct_ref)
3203
bc61b0e8d60e [project @ 1998-10-30 20:26:27 by jwe]
jwe
parents: 3202
diff changeset
1701
28631
70cdf8de553d move non-member octave_value operator functions to octave namespace
John W. Eaton <jwe@octave.org>
parents: 28588
diff changeset
1702 #define OV_COMP_BINOP_FN(name) \
70cdf8de553d move non-member octave_value operator functions to octave namespace
John W. Eaton <jwe@octave.org>
parents: 28588
diff changeset
1703 inline octave_value \
70cdf8de553d move non-member octave_value operator functions to octave namespace
John W. Eaton <jwe@octave.org>
parents: 28588
diff changeset
1704 name (const octave_value& a1, const octave_value& a2) \
70cdf8de553d move non-member octave_value operator functions to octave namespace
John W. Eaton <jwe@octave.org>
parents: 28588
diff changeset
1705 { \
70cdf8de553d move non-member octave_value operator functions to octave namespace
John W. Eaton <jwe@octave.org>
parents: 28588
diff changeset
1706 return octave::binary_op (octave_value::name, a1, a2); \
7800
5861b95e9879 support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents: 7789
diff changeset
1707 }
5861b95e9879 support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents: 7789
diff changeset
1708
5861b95e9879 support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents: 7789
diff changeset
1709 OV_COMP_BINOP_FN (op_trans_mul)
5861b95e9879 support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents: 7789
diff changeset
1710 OV_COMP_BINOP_FN (op_mul_trans)
5861b95e9879 support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents: 7789
diff changeset
1711 OV_COMP_BINOP_FN (op_herm_mul)
5861b95e9879 support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents: 7789
diff changeset
1712 OV_COMP_BINOP_FN (op_mul_herm)
5861b95e9879 support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
Jaroslav Hajek <highegg@gmail.com>
parents: 7789
diff changeset
1713
24540
46440078d73b don't use singleton for octave_value_typeinfo
John W. Eaton <jwe@octave.org>
parents: 24534
diff changeset
1714 extern OCTINTERP_API void install_types (octave::type_info&);
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
1715
9657
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1716 // Templated value extractors.
33244
08ab46f6e241 replace uses of assert with panic_impossible in ov.h
John W. Eaton <jwe@octave.org>
parents: 32838
diff changeset
1717
21139
538b57866b90 consistently use "typename" intead of "class" in template declarations
John W. Eaton <jwe@octave.org>
parents: 21134
diff changeset
1718 template <typename Value>
9657
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1719 inline Value octave_value_extract (const octave_value&)
33382
79cfa1b7a813 replace nearly all remaining uses of panic_impossible with error
John W. Eaton <jwe@octave.org>
parents: 33365
diff changeset
1720 {
79cfa1b7a813 replace nearly all remaining uses of panic_impossible with error
John W. Eaton <jwe@octave.org>
parents: 33365
diff changeset
1721 // We can't include error.h in ov.h. Is there anything better than
79cfa1b7a813 replace nearly all remaining uses of panic_impossible with error
John W. Eaton <jwe@octave.org>
parents: 33365
diff changeset
1722 // panic_impossible that we can do here?
79cfa1b7a813 replace nearly all remaining uses of panic_impossible with error
John W. Eaton <jwe@octave.org>
parents: 33365
diff changeset
1723
79cfa1b7a813 replace nearly all remaining uses of panic_impossible with error
John W. Eaton <jwe@octave.org>
parents: 33365
diff changeset
1724 panic_impossible ();
79cfa1b7a813 replace nearly all remaining uses of panic_impossible with error
John W. Eaton <jwe@octave.org>
parents: 33365
diff changeset
1725 }
9657
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1726
22197
e43d83253e28 refill multi-line macro definitions
John W. Eaton <jwe@octave.org>
parents: 22022
diff changeset
1727 #define DEF_VALUE_EXTRACTOR(VALUE,MPREFIX) \
e43d83253e28 refill multi-line macro definitions
John W. Eaton <jwe@octave.org>
parents: 22022
diff changeset
1728 template <> \
e43d83253e28 refill multi-line macro definitions
John W. Eaton <jwe@octave.org>
parents: 22022
diff changeset
1729 inline VALUE octave_value_extract<VALUE> (const octave_value& v) \
e43d83253e28 refill multi-line macro definitions
John W. Eaton <jwe@octave.org>
parents: 22022
diff changeset
1730 { \
e43d83253e28 refill multi-line macro definitions
John W. Eaton <jwe@octave.org>
parents: 22022
diff changeset
1731 return v.MPREFIX ## _value (); \
e43d83253e28 refill multi-line macro definitions
John W. Eaton <jwe@octave.org>
parents: 22022
diff changeset
1732 }
9657
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1733
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1734 DEF_VALUE_EXTRACTOR (double, scalar)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1735 DEF_VALUE_EXTRACTOR (float, float_scalar)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1736 DEF_VALUE_EXTRACTOR (Complex, complex)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1737 DEF_VALUE_EXTRACTOR (FloatComplex, float_complex)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1738 DEF_VALUE_EXTRACTOR (bool, bool)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1739
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1740 DEF_VALUE_EXTRACTOR (octave_int8, int8_scalar)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1741 DEF_VALUE_EXTRACTOR (octave_int16, int16_scalar)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1742 DEF_VALUE_EXTRACTOR (octave_int32, int32_scalar)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1743 DEF_VALUE_EXTRACTOR (octave_int64, int64_scalar)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1744 DEF_VALUE_EXTRACTOR (octave_uint8, uint8_scalar)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1745 DEF_VALUE_EXTRACTOR (octave_uint16, uint16_scalar)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1746 DEF_VALUE_EXTRACTOR (octave_uint32, uint32_scalar)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1747 DEF_VALUE_EXTRACTOR (octave_uint64, uint64_scalar)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1748
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1749 DEF_VALUE_EXTRACTOR (NDArray, array)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1750 DEF_VALUE_EXTRACTOR (FloatNDArray, float_array)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1751 DEF_VALUE_EXTRACTOR (ComplexNDArray, complex_array)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1752 DEF_VALUE_EXTRACTOR (FloatComplexNDArray, float_complex_array)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1753 DEF_VALUE_EXTRACTOR (boolNDArray, bool_array)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1754
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1755 DEF_VALUE_EXTRACTOR (charNDArray, char_array)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1756 DEF_VALUE_EXTRACTOR (int8NDArray, int8_array)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1757 DEF_VALUE_EXTRACTOR (int16NDArray, int16_array)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1758 DEF_VALUE_EXTRACTOR (int32NDArray, int32_array)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1759 DEF_VALUE_EXTRACTOR (int64NDArray, int64_array)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1760 DEF_VALUE_EXTRACTOR (uint8NDArray, uint8_array)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1761 DEF_VALUE_EXTRACTOR (uint16NDArray, uint16_array)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1762 DEF_VALUE_EXTRACTOR (uint32NDArray, uint32_array)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1763 DEF_VALUE_EXTRACTOR (uint64NDArray, uint64_array)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1764
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1765 DEF_VALUE_EXTRACTOR (Matrix, matrix)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1766 DEF_VALUE_EXTRACTOR (FloatMatrix, float_matrix)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1767 DEF_VALUE_EXTRACTOR (ComplexMatrix, complex_matrix)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1768 DEF_VALUE_EXTRACTOR (FloatComplexMatrix, float_complex_matrix)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1769 DEF_VALUE_EXTRACTOR (boolMatrix, bool_matrix)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1770
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1771 DEF_VALUE_EXTRACTOR (ColumnVector, column_vector)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1772 DEF_VALUE_EXTRACTOR (FloatColumnVector, float_column_vector)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1773 DEF_VALUE_EXTRACTOR (ComplexColumnVector, complex_column_vector)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1774 DEF_VALUE_EXTRACTOR (FloatComplexColumnVector, float_complex_column_vector)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1775
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1776 DEF_VALUE_EXTRACTOR (RowVector, row_vector)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1777 DEF_VALUE_EXTRACTOR (FloatRowVector, float_row_vector)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1778 DEF_VALUE_EXTRACTOR (ComplexRowVector, complex_row_vector)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1779 DEF_VALUE_EXTRACTOR (FloatComplexRowVector, float_complex_row_vector)
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1780
9685
e793865ede63 implement builtin_type
Jaroslav Hajek <highegg@gmail.com>
parents: 9661
diff changeset
1781 DEF_VALUE_EXTRACTOR (DiagMatrix, diag_matrix)
e793865ede63 implement builtin_type
Jaroslav Hajek <highegg@gmail.com>
parents: 9661
diff changeset
1782 DEF_VALUE_EXTRACTOR (FloatDiagMatrix, float_diag_matrix)
e793865ede63 implement builtin_type
Jaroslav Hajek <highegg@gmail.com>
parents: 9661
diff changeset
1783 DEF_VALUE_EXTRACTOR (ComplexDiagMatrix, complex_diag_matrix)
e793865ede63 implement builtin_type
Jaroslav Hajek <highegg@gmail.com>
parents: 9661
diff changeset
1784 DEF_VALUE_EXTRACTOR (FloatComplexDiagMatrix, float_complex_diag_matrix)
e793865ede63 implement builtin_type
Jaroslav Hajek <highegg@gmail.com>
parents: 9661
diff changeset
1785 DEF_VALUE_EXTRACTOR (PermMatrix, perm_matrix)
e793865ede63 implement builtin_type
Jaroslav Hajek <highegg@gmail.com>
parents: 9661
diff changeset
1786
9789
97f5de91427b support sparse templated extractors
Jaroslav Hajek <highegg@gmail.com>
parents: 9732
diff changeset
1787 DEF_VALUE_EXTRACTOR (SparseMatrix, sparse_matrix)
97f5de91427b support sparse templated extractors
Jaroslav Hajek <highegg@gmail.com>
parents: 9732
diff changeset
1788 DEF_VALUE_EXTRACTOR (SparseComplexMatrix, sparse_complex_matrix)
97f5de91427b support sparse templated extractors
Jaroslav Hajek <highegg@gmail.com>
parents: 9732
diff changeset
1789 DEF_VALUE_EXTRACTOR (SparseBoolMatrix, sparse_bool_matrix)
9657
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1790 #undef DEF_VALUE_EXTRACTOR
3c1c3a38ec7b implement templated octave_value extractor
Jaroslav Hajek <highegg@gmail.com>
parents: 9607
diff changeset
1791
33382
79cfa1b7a813 replace nearly all remaining uses of panic_impossible with error
John W. Eaton <jwe@octave.org>
parents: 33365
diff changeset
1792 // We can't include error.h in ov.h. Is there anything better than
79cfa1b7a813 replace nearly all remaining uses of panic_impossible with error
John W. Eaton <jwe@octave.org>
parents: 33365
diff changeset
1793 // panic_impossible that we can do here?
79cfa1b7a813 replace nearly all remaining uses of panic_impossible with error
John W. Eaton <jwe@octave.org>
parents: 33365
diff changeset
1794
22197
e43d83253e28 refill multi-line macro definitions
John W. Eaton <jwe@octave.org>
parents: 22022
diff changeset
1795 #define DEF_DUMMY_VALUE_EXTRACTOR(VALUE,DEFVAL) \
e43d83253e28 refill multi-line macro definitions
John W. Eaton <jwe@octave.org>
parents: 22022
diff changeset
1796 template <> \
e43d83253e28 refill multi-line macro definitions
John W. Eaton <jwe@octave.org>
parents: 22022
diff changeset
1797 inline VALUE octave_value_extract<VALUE> (const octave_value&) \
e43d83253e28 refill multi-line macro definitions
John W. Eaton <jwe@octave.org>
parents: 22022
diff changeset
1798 { \
33244
08ab46f6e241 replace uses of assert with panic_impossible in ov.h
John W. Eaton <jwe@octave.org>
parents: 32838
diff changeset
1799 panic_impossible (); \
22197
e43d83253e28 refill multi-line macro definitions
John W. Eaton <jwe@octave.org>
parents: 22022
diff changeset
1800 return DEFVAL; \
e43d83253e28 refill multi-line macro definitions
John W. Eaton <jwe@octave.org>
parents: 22022
diff changeset
1801 }
13733
b1186adb567e Add dummy template specializations with a return value.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 13294
diff changeset
1802
b1186adb567e Add dummy template specializations with a return value.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 13294
diff changeset
1803 DEF_DUMMY_VALUE_EXTRACTOR (char, 0)
b1186adb567e Add dummy template specializations with a return value.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 13294
diff changeset
1804 DEF_DUMMY_VALUE_EXTRACTOR (octave_value, octave_value ())
b1186adb567e Add dummy template specializations with a return value.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 13294
diff changeset
1805 #undef DEF_DUMMY_VALUE_EXTRACTOR
b1186adb567e Add dummy template specializations with a return value.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 13294
diff changeset
1806
2376
2142216bf85a [project @ 1996-10-12 01:39:07 by jwe]
jwe
parents:
diff changeset
1807 #endif