|
| | Date (const Date &date) |
| |
| | Date (int year, int month, int day, int hour, int min, int sec, int usec) |
| |
| | Date (int hour, int min, int sec, int usec) |
| |
| | Date (int year, int month, int day) |
| |
| std::string | class_name () const override |
| |
| std::string & | append_descr (std::string &s_out, int indent=-1, int quote_strings=0) const override |
| |
| std::string & | append_repr (std::string &s_out) const override |
| |
| void | append_json (shcore::JSON_dumper &dumper) const override |
| |
| virtual bool | operator== (const Object_bridge &other) const |
| |
| bool | operator== (const Date &other) const |
| |
| int64_t | as_ms () const |
| |
| int | get_year () const |
| |
| int | get_month () const |
| |
| int | get_day () const |
| |
| int | get_hour () const |
| |
| int | get_min () const |
| |
| int | get_sec () const |
| |
| int | get_usec () const |
| |
| bool | has_time () const |
| |
| bool | has_date () const |
| |
| virtual | ~Object_bridge ()=default |
| |
| virtual std::vector< std::string > | get_members () const |
| | Returns the list of members that this object has. More...
|
| |
| virtual bool | has_member (const std::string &prop) const |
| | Verifies if the object has a member. More...
|
| |
| virtual void | set_member (const std::string &, Value) |
| | Sets the value of a member. More...
|
| |
| virtual bool | is_indexed () const |
| | Returns the value of a member. More...
|
| |
| virtual Value | get_member (size_t) const |
| | Returns the value of a member. More...
|
| |
| virtual void | set_member (size_t, Value) |
| | Sets the value of a member. More...
|
| |
| virtual size_t | length () const |
| | Returns the number of indexable members. More...
|
| |
| bool | has_method (const std::string &name) const |
| | Returns true if a method with the given name exists. More...
|
| |
| virtual Value | get_member (const std::string &) const |
| | Returns the value of a member. More...
|
| |
| virtual Value | call (const std::string &, const Argument_list &) |
| | Calls the named method with the given args. More...
|
| |