GNU Octave  8.1.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
ov-typeinfo.h File Reference
#include "octave-config.h"
#include <string>
#include "Array.h"
#include "oct-map.h"
#include "ov.h"
Include dependency graph for ov-typeinfo.h:

Go to the source code of this file.

Classes

class  type_info
 

Typedefs

typedef octave::type_info::assign_op_fcn assign_op_fcn
 
typedef octave::type_info::assignany_op_fcn assignany_op_fcn
 
typedef octave::type_info::binary_class_op_fcn binary_class_op_fcn
 
typedef octave::type_info::binary_op_fcn binary_op_fcn
 
typedef octave::type_info::cat_op_fcn cat_op_fcn
 
typedef octave::type_info::non_const_unary_op_fcn non_const_unary_op_fcn
 
typedef octave::type_info::unary_class_op_fcn unary_class_op_fcn
 
typedef octave::type_info::unary_op_fcn unary_op_fcn
 

Functions

OCTINTERP_API octave_scalar_map installed_type_info (void)
 
OCTINTERP_API string_vector installed_type_names (void)
 
OCTINTERP_API assign_op_fcn lookup_assign_op (octave_value::assign_op op, int t_lhs, int t_rhs)
 
OCTINTERP_API assignany_op_fcn lookup_assignany_op (octave_value::assign_op op, int t_lhs)
 
OCTINTERP_API binary_class_op_fcn lookup_binary_class_op (octave_value::binary_op op)
 
OCTINTERP_API binary_class_op_fcn lookup_binary_class_op (octave_value::compound_binary_op op)
 
OCTINTERP_API binary_op_fcn lookup_binary_op (octave_value::binary_op op, int t1, int t2)
 
OCTINTERP_API binary_op_fcn lookup_binary_op (octave_value::compound_binary_op op, int t1, int t2)
 
OCTINTERP_API cat_op_fcn lookup_cat_op (int t1, int t2)
 
OCTINTERP_API non_const_unary_op_fcn lookup_non_const_unary_op (octave_value::unary_op op, int t)
 
OCTINTERP_API int lookup_pref_assign_conv (int t_lhs, int t_rhs)
 
OCTINTERP_API octave_value lookup_type (const std::string &nm)
 
OCTINTERP_API unary_class_op_fcn lookup_unary_class_op (octave_value::unary_op op)
 
OCTINTERP_API unary_op_fcn lookup_unary_op (octave_value::unary_op op, int t)
 
OCTINTERP_API octave_base_value::type_conv_fcn lookup_widening_op (int t, int t_result)
 
OCTINTERP_API int register_type (const std::string &t_name, const std::string &c_name, const octave_value &val)
 

Typedef Documentation

◆ assign_op_fcn

typedef octave::type_info::assign_op_fcn assign_op_fcn

Definition at line 287 of file ov-typeinfo.h.

◆ assignany_op_fcn

typedef octave::type_info::assignany_op_fcn assignany_op_fcn

Definition at line 289 of file ov-typeinfo.h.

◆ binary_class_op_fcn

typedef octave::type_info::binary_class_op_fcn binary_class_op_fcn

Definition at line 281 of file ov-typeinfo.h.

◆ binary_op_fcn

typedef octave::type_info::binary_op_fcn binary_op_fcn

Definition at line 283 of file ov-typeinfo.h.

◆ cat_op_fcn

typedef octave::type_info::cat_op_fcn cat_op_fcn

Definition at line 285 of file ov-typeinfo.h.

◆ non_const_unary_op_fcn

typedef octave::type_info::non_const_unary_op_fcn non_const_unary_op_fcn

Definition at line 279 of file ov-typeinfo.h.

◆ unary_class_op_fcn

typedef octave::type_info::unary_class_op_fcn unary_class_op_fcn

Definition at line 275 of file ov-typeinfo.h.

◆ unary_op_fcn

typedef octave::type_info::unary_op_fcn unary_op_fcn

Definition at line 277 of file ov-typeinfo.h.

Function Documentation

◆ installed_type_info()

OCTINTERP_API octave_scalar_map installed_type_info ( void  )

Definition at line 885 of file ov-typeinfo.cc.

References __get_type_info__(), and type_info::installed_type_info().

◆ installed_type_names()

OCTINTERP_API string_vector installed_type_names ( void  )

Definition at line 878 of file ov-typeinfo.cc.

References __get_type_info__(), and type_info::installed_type_names().

◆ lookup_assign_op()

OCTINTERP_API assign_op_fcn lookup_assign_op ( octave_value::assign_op  op,
int  t_lhs,
int  t_rhs 
)

Definition at line 848 of file ov-typeinfo.cc.

References __get_type_info__(), and type_info::lookup_assign_op().

◆ lookup_assignany_op()

OCTINTERP_API assignany_op_fcn lookup_assignany_op ( octave_value::assign_op  op,
int  t_lhs 
)

Definition at line 856 of file ov-typeinfo.cc.

References __get_type_info__(), and type_info::lookup_assignany_op().

◆ lookup_binary_class_op() [1/2]

OCTINTERP_API binary_class_op_fcn lookup_binary_class_op ( octave_value::binary_op  op)

Definition at line 809 of file ov-typeinfo.cc.

References __get_type_info__(), and type_info::lookup_binary_class_op().

◆ lookup_binary_class_op() [2/2]

OCTINTERP_API binary_class_op_fcn lookup_binary_class_op ( octave_value::compound_binary_op  op)

Definition at line 825 of file ov-typeinfo.cc.

References __get_type_info__(), and type_info::lookup_binary_class_op().

◆ lookup_binary_op() [1/2]

OCTINTERP_API binary_op_fcn lookup_binary_op ( octave_value::binary_op  op,
int  t1,
int  t2 
)

Definition at line 817 of file ov-typeinfo.cc.

References __get_type_info__(), and type_info::lookup_binary_op().

◆ lookup_binary_op() [2/2]

OCTINTERP_API binary_op_fcn lookup_binary_op ( octave_value::compound_binary_op  op,
int  t1,
int  t2 
)

Definition at line 833 of file ov-typeinfo.cc.

References __get_type_info__(), and type_info::lookup_binary_op().

◆ lookup_cat_op()

OCTINTERP_API cat_op_fcn lookup_cat_op ( int  t1,
int  t2 
)

Definition at line 840 of file ov-typeinfo.cc.

References __get_type_info__(), and type_info::lookup_cat_op().

◆ lookup_non_const_unary_op()

OCTINTERP_API non_const_unary_op_fcn lookup_non_const_unary_op ( octave_value::unary_op  op,
int  t 
)

Definition at line 801 of file ov-typeinfo.cc.

References __get_type_info__(), and type_info::lookup_non_const_unary_op().

◆ lookup_pref_assign_conv()

OCTINTERP_API int lookup_pref_assign_conv ( int  t_lhs,
int  t_rhs 
)

Definition at line 863 of file ov-typeinfo.cc.

References __get_type_info__(), and type_info::lookup_pref_assign_conv().

◆ lookup_type()

OCTINTERP_API octave_value lookup_type ( const std::string &  nm)

Definition at line 779 of file ov-typeinfo.cc.

References __get_type_info__(), and type_info::lookup_type().

Referenced by hdf5_read_next_data_internal().

◆ lookup_unary_class_op()

OCTINTERP_API unary_class_op_fcn lookup_unary_class_op ( octave_value::unary_op  op)

Definition at line 786 of file ov-typeinfo.cc.

References __get_type_info__(), and type_info::lookup_unary_class_op().

◆ lookup_unary_op()

OCTINTERP_API unary_op_fcn lookup_unary_op ( octave_value::unary_op  op,
int  t 
)

Definition at line 793 of file ov-typeinfo.cc.

References __get_type_info__(), and type_info::lookup_unary_op().

◆ lookup_widening_op()

OCTINTERP_API octave_base_value::type_conv_fcn lookup_widening_op ( int  t,
int  t_result 
)

Definition at line 871 of file ov-typeinfo.cc.

References __get_type_info__(), and type_info::lookup_widening_op().

◆ register_type()

OCTINTERP_API int register_type ( const std::string &  t_name,
const std::string &  c_name,
const octave_value val 
)

Definition at line 771 of file ov-typeinfo.cc.

References __get_type_info__(), and type_info::register_type().