GNU Octave  6.2.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
octave::cdef_package Class Reference

#include "cdef-package.h"

Inheritance diagram for octave::cdef_package:
Collaboration diagram for octave::cdef_package:

Classes

class  cdef_package_rep
 

Public Member Functions

 cdef_package (const cdef_object &obj)
 
 cdef_package (const cdef_package &pack)
 
 cdef_package (const std::string &nm)
 
 cdef_package (void)
 
 ~cdef_package (void)=default
 
Array< cdef_objectarray_value (void) const
 
std::string class_name (void) const
 
cdef_object clone (void) const
 
cdef_object copy (void) const
 
dim_vector dims (void) const
 
cdef_object empty_clone (void) const
 
octave_value find (const std::string &nm)
 
octave_value get (const std::string &pname) const
 
cdef_class get_class (void) const
 
Cell get_classes (void) const
 
Cell get_functions (void) const
 
std::string get_name (void) const
 
Cell get_packages (void) const
 
octave_value get_property (octave_idx_type idx, const std::string &pname) const
 
void install_class (const cdef_class &cls, const std::string &nm)
 
void install_function (const octave_value &fcn, const std::string &nm)
 
void install_package (const cdef_package &pack, const std::string &nm)
 
bool is (const cdef_object &obj) const
 
bool is_array (void) const
 
bool is_class (void) const
 
bool is_constructed (void) const
 
bool is_constructed_for (const cdef_class &cls) const
 
bool is_handle_object (void) const
 
bool is_meta_object (void) const
 
bool is_method (void) const
 
bool is_package (void) const
 
bool is_partially_constructed_for (const cdef_class &cls) const
 
bool is_property (void) const
 
bool is_value_object (void) const
 
cdef_object make_array (void) const
 
string_vector map_keys (void) const
 
octave_map map_value (void) const
 
void mark_as_constructed (const cdef_class &cls)
 
void mark_as_constructed (void)
 
void mark_for_construction (const cdef_class &cls)
 
bool meta_accepts_postfix_index (char type) const
 
void meta_release (void)
 
octave_value_list meta_subsref (const std::string &type, const std::list< octave_value_list > &idx, int nargout)
 
bool ok (void) const
 
cdef_packageoperator= (const cdef_package &pack)
 
void put (const std::string &pname, const octave_value &val)
 
void set_class (const cdef_class &cls)
 
void set_property (octave_idx_type idx, const std::string &pname, const octave_value &pval)
 
octave_value subsasgn (const std::string &type, const std::list< octave_value_list > &idx, const octave_value &rhs, int ignore_copies=0)
 
octave_value_list subsref (const std::string &type, const std::list< octave_value_list > &idx, int nargout, size_t &skip, const cdef_class &context, bool auto_add=false)
 

Protected Member Functions

void make_unique (int ignore_copies)
 

Private Member Functions

cdef_package_repget_rep (void)
 
const cdef_package_repget_rep (void) const
 

Private Attributes

cdef_object_reprep
 

Friends

class cdef_class
 
void install_classdef (interpreter &interp)
 

Detailed Description

Definition at line 44 of file cdef-package.h.

Constructor & Destructor Documentation

◆ cdef_package() [1/4]

octave::cdef_package::cdef_package ( void  )
inline

Definition at line 147 of file cdef-package.h.

◆ cdef_package() [2/4]

octave::cdef_package::cdef_package ( const std::string &  nm)
inline

Definition at line 149 of file cdef-package.h.

◆ cdef_package() [3/4]

octave::cdef_package::cdef_package ( const cdef_package pack)
inline

Definition at line 155 of file cdef-package.h.

◆ cdef_package() [4/4]

octave::cdef_package::cdef_package ( const cdef_object obj)
inline

Definition at line 157 of file cdef-package.h.

References error().

◆ ~cdef_package()

octave::cdef_package::~cdef_package ( void  )
default

Member Function Documentation

◆ array_value()

Array<cdef_object> octave::cdef_object::array_value ( void  ) const
inlineinherited

◆ class_name()

std::string octave::cdef_object::class_name ( void  ) const
inlineinherited

◆ clone()

cdef_object octave::cdef_object::clone ( void  ) const
inlineinherited

Definition at line 230 of file cdef-object.h.

◆ copy()

cdef_object octave::cdef_object::copy ( void  ) const
inlineinherited

Definition at line 244 of file cdef-object.h.

Referenced by octave::cdef_object_array::fill_empty_values().

◆ dims()

dim_vector octave::cdef_object::dims ( void  ) const
inlineinherited

Definition at line 237 of file cdef-object.h.

◆ empty_clone()

cdef_object octave::cdef_object::empty_clone ( void  ) const
inlineinherited

Definition at line 232 of file cdef-object.h.

◆ find()

octave_value octave::cdef_package::find ( const std::string &  nm)
inline

◆ get()

◆ get_class()

◆ get_classes()

Cell octave::cdef_package::get_classes ( void  ) const
inline

Definition at line 190 of file cdef-package.h.

Referenced by octave::package_get_classes().

◆ get_functions()

Cell octave::cdef_package::get_functions ( void  ) const
inline

Definition at line 195 of file cdef-package.h.

Referenced by octave::package_get_functions().

◆ get_name()

◆ get_packages()

Cell octave::cdef_package::get_packages ( void  ) const
inline

Definition at line 200 of file cdef-package.h.

Referenced by octave::package_get_packages().

◆ get_property()

octave_value octave::cdef_object::get_property ( octave_idx_type  idx,
const std::string &  pname 
) const
inlineinherited

Definition at line 273 of file cdef-object.h.

◆ get_rep() [1/2]

cdef_package_rep* octave::cdef_package::get_rep ( void  )
inlineprivate

◆ get_rep() [2/2]

const cdef_package_rep* octave::cdef_package::get_rep ( void  ) const
inlineprivate

Definition at line 219 of file cdef-package.h.

References octave::cdef_object::get_rep().

◆ install_class()

void octave::cdef_package::install_class ( const cdef_class cls,
const std::string &  nm 
)
inline

Definition at line 175 of file cdef-package.h.

Referenced by octave::cdef_manager::cdef_manager().

◆ install_function()

void octave::cdef_package::install_function ( const octave_value fcn,
const std::string &  nm 
)
inline

Definition at line 180 of file cdef-package.h.

◆ install_package()

void octave::cdef_package::install_package ( const cdef_package pack,
const std::string &  nm 
)
inline

Definition at line 185 of file cdef-package.h.

◆ is()

bool octave::cdef_object::is ( const cdef_object obj) const
inlineinherited

◆ is_array()

bool octave::cdef_object::is_array ( void  ) const
inlineinherited

◆ is_class()

bool octave::cdef_meta_object::is_class ( void  ) const
inlineinherited

Definition at line 658 of file cdef-object.h.

◆ is_constructed()

bool octave::cdef_object::is_constructed ( void  ) const
inlineinherited

◆ is_constructed_for()

bool octave::cdef_object::is_constructed_for ( const cdef_class cls) const
inlineinherited

Definition at line 309 of file cdef-object.h.

◆ is_handle_object()

bool octave::cdef_object::is_handle_object ( void  ) const
inlineinherited

Definition at line 250 of file cdef-object.h.

◆ is_meta_object()

bool octave::cdef_object::is_meta_object ( void  ) const
inlineinherited

Definition at line 252 of file cdef-object.h.

◆ is_method()

bool octave::cdef_meta_object::is_method ( void  ) const
inlineinherited

Definition at line 662 of file cdef-object.h.

◆ is_package()

bool octave::cdef_meta_object::is_package ( void  ) const
inlineinherited

Definition at line 664 of file cdef-object.h.

◆ is_partially_constructed_for()

bool octave::cdef_object::is_partially_constructed_for ( const cdef_class cls) const
inlineinherited

◆ is_property()

bool octave::cdef_meta_object::is_property ( void  ) const
inlineinherited

Definition at line 660 of file cdef-object.h.

◆ is_value_object()

bool octave::cdef_object::is_value_object ( void  ) const
inlineinherited

Definition at line 248 of file cdef-object.h.

◆ make_array()

cdef_object octave::cdef_object::make_array ( void  ) const
inlineinherited

Definition at line 239 of file cdef-object.h.

◆ make_unique()

void octave::cdef_object::make_unique ( int  ignore_copies)
inlineprotectedinherited

Definition at line 330 of file cdef-object.h.

◆ map_keys()

string_vector octave::cdef_object::map_keys ( void  ) const
inlineinherited

Definition at line 294 of file cdef-object.h.

◆ map_value()

◆ mark_as_constructed() [1/2]

void octave::cdef_object::mark_as_constructed ( const cdef_class cls)
inlineinherited

Definition at line 321 of file cdef-object.h.

◆ mark_as_constructed() [2/2]

void octave::cdef_object::mark_as_constructed ( void  )
inlineinherited

Definition at line 319 of file cdef-object.h.

Referenced by octave::cdef_class::cdef_class_rep::run_constructor().

◆ mark_for_construction()

void octave::cdef_object::mark_for_construction ( const cdef_class cls)
inlineinherited

◆ meta_accepts_postfix_index()

bool octave::cdef_meta_object::meta_accepts_postfix_index ( char  type) const
inlineinherited

Definition at line 675 of file cdef-object.h.

◆ meta_release()

void octave::cdef_meta_object::meta_release ( void  )
inlineinherited

Definition at line 673 of file cdef-object.h.

◆ meta_subsref()

octave_value_list octave::cdef_meta_object::meta_subsref ( const std::string &  type,
const std::list< octave_value_list > &  idx,
int  nargout 
)
inlineinherited

Definition at line 667 of file cdef-object.h.

◆ ok()

◆ operator=()

cdef_package& octave::cdef_package::operator= ( const cdef_package pack)
inline

Definition at line 166 of file cdef-package.h.

References octave::cdef_object::operator=().

◆ put()

◆ set_class()

◆ set_property()

void octave::cdef_object::set_property ( octave_idx_type  idx,
const std::string &  pname,
const octave_value pval 
)
inlineinherited

Definition at line 266 of file cdef-object.h.

◆ subsasgn()

octave_value octave::cdef_object::subsasgn ( const std::string &  type,
const std::list< octave_value_list > &  idx,
const octave_value rhs,
int  ignore_copies = 0 
)
inlineinherited

◆ subsref()

octave_value_list octave::cdef_object::subsref ( const std::string &  type,
const std::list< octave_value_list > &  idx,
int  nargout,
size_t &  skip,
const cdef_class context,
bool  auto_add = false 
)
inlineinherited

Definition at line 279 of file cdef-object.h.

References octave::context.

Referenced by octave::cdef_object_scalar::subsref().

Friends And Related Function Documentation

◆ cdef_class

friend class cdef_class
friend

Definition at line 47 of file cdef-package.h.

◆ install_classdef

void install_classdef ( interpreter interp)
friend

Member Data Documentation

◆ rep

cdef_object_rep* octave::cdef_object::rep
privateinherited

The documentation for this class was generated from the following file: