GNU Octave  9.1.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
cdef_object_scalar Class Reference

#include "cdef-object.h"

Inheritance diagram for cdef_object_scalar:
cdef_object_base cdef_object_rep handle_cdef_object value_cdef_object cdef_meta_object_rep

Public Member Functions

 cdef_object_scalar ()
 
 ~cdef_object_scalar ()=default
 
void break_closure_cycles (const std::shared_ptr< stack_frame > &frame)
 
dim_vector dims () const
 
octave_value get (const std::string &pname) const
 
octave_value get_property (octave_idx_type idx, const std::string &pname) const
 
bool is_constructed () const
 
bool is_constructed_for (const cdef_class &cls) const
 
bool is_partially_constructed_for (const cdef_class &cls) const
 
void mark_as_constructed ()
 
void mark_as_constructed (const cdef_class &cls)
 
void mark_for_construction (const cdef_class &)
 
cdef_object_scalaroperator= (const cdef_object_scalar &)=delete
 
void put (const std::string &pname, const octave_value &val)
 
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)
 
octave_value_list subsref (const std::string &type, const std::list< octave_value_list > &idx, int nargout, std::size_t &skip, const cdef_class &context, bool auto_add)
 
- Public Member Functions inherited from cdef_object_base
 cdef_object_base ()
 
 ~cdef_object_base ()
 
cdef_object_repempty_clone () const
 
cdef_class get_class () const
 
cdef_object_repmake_array () const
 
cdef_object_baseoperator= (const cdef_object_base &)=delete
 
void set_class (const cdef_class &cls)
 
- Public Member Functions inherited from cdef_object_rep
 cdef_object_rep ()
 
virtual ~cdef_object_rep ()=default
 
virtual Array< cdef_objectarray_value () const
 
std::string class_name () const
 
virtual cdef_object_repclone () const
 
virtual cdef_object_repcopy () const
 
virtual void destroy ()
 
virtual bool is_array () const
 
virtual bool is_handle_object () const
 
virtual bool is_meta_object () const
 
virtual bool is_valid () const
 
virtual bool is_value_object () const
 
virtual string_vector map_keys () const
 
cdef_object_repoperator= (const cdef_object_rep &)=delete
 
void release (const cdef_object &obj)
 
virtual octave_idx_type static_count () const
 

Protected Member Functions

 cdef_object_scalar (const cdef_object_scalar &obj)
 
- Protected Member Functions inherited from cdef_object_base
 cdef_object_base (const cdef_object_base &obj)
 
- Protected Member Functions inherited from cdef_object_rep
 cdef_object_rep (const cdef_object_rep &)
 

Protected Attributes

std::map< cdef_class, std::list< cdef_class > > m_ctor_list
 
octave_scalar_map m_map
 
- Protected Attributes inherited from cdef_object_rep
refcount< octave_idx_typem_count
 

Detailed Description

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

Constructor & Destructor Documentation

◆ cdef_object_scalar() [1/2]

cdef_object_scalar::cdef_object_scalar ( )
inline

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

◆ ~cdef_object_scalar()

cdef_object_scalar::~cdef_object_scalar ( )
default

◆ cdef_object_scalar() [2/2]

cdef_object_scalar::cdef_object_scalar ( const cdef_object_scalar obj)
inlineprotected

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

Member Function Documentation

◆ break_closure_cycles()

void cdef_object_scalar::break_closure_cycles ( const std::shared_ptr< stack_frame > &  frame)
virtual

◆ dims()

dim_vector cdef_object_scalar::dims ( ) const
inlinevirtual

Reimplemented from cdef_object_rep.

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

◆ get()

octave_value cdef_object_scalar::get ( const std::string &  pname) const
inlinevirtual

Reimplemented from cdef_object_rep.

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

References error(), and Array< T, Alloc >::numel().

◆ get_property()

octave_value cdef_object_scalar::get_property ( octave_idx_type  idx,
const std::string &  pname 
) const
inlinevirtual

Reimplemented from cdef_object_rep.

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

References error(), and cdef_object::get().

◆ is_constructed()

bool cdef_object_scalar::is_constructed ( ) const
inlinevirtual

Reimplemented from cdef_object_rep.

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

Referenced by is_constructed_for(), and is_partially_constructed_for().

◆ is_constructed_for()

bool cdef_object_scalar::is_constructed_for ( const cdef_class cls) const
virtual

Reimplemented from cdef_object_rep.

Definition at line 707 of file cdef-object.cc.

References is_constructed(), and m_ctor_list.

◆ is_partially_constructed_for()

bool cdef_object_scalar::is_partially_constructed_for ( const cdef_class cls) const
virtual

Reimplemented from cdef_object_rep.

Definition at line 714 of file cdef-object.cc.

References is_constructed(), and m_ctor_list.

◆ mark_as_constructed() [1/2]

void cdef_object_scalar::mark_as_constructed ( )
inlinevirtual

Reimplemented from cdef_object_rep.

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

◆ mark_as_constructed() [2/2]

void cdef_object_scalar::mark_as_constructed ( const cdef_class cls)
virtual

Reimplemented from cdef_object_rep.

Definition at line 733 of file cdef-object.cc.

References m_ctor_list.

◆ mark_for_construction()

void cdef_object_scalar::mark_for_construction ( const cdef_class cls)
virtual

◆ operator=()

cdef_object_scalar& cdef_object_scalar::operator= ( const cdef_object_scalar )
delete

◆ put()

void cdef_object_scalar::put ( const std::string &  pname,
const octave_value val 
)
inlinevirtual

Reimplemented from cdef_object_rep.

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

◆ set_property()

void cdef_object_scalar::set_property ( octave_idx_type  idx,
const std::string &  pname,
const octave_value pval 
)
inlinevirtual

Reimplemented from cdef_object_rep.

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

References error(), and cdef_object::put().

◆ subsasgn()

◆ subsref()

Member Data Documentation

◆ m_ctor_list

std::map< cdef_class, std::list<cdef_class> > cdef_object_scalar::m_ctor_list
protected

◆ m_map

octave_scalar_map cdef_object_scalar::m_map
protected

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

Referenced by break_closure_cycles().


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