
Public Member Functions | |
| void | output (ostream &os) |
| Outputs to a narrow stream. | |
| void | output (wostream &os) |
| Outputs to a wide stream. | |
| std::string | class_name () |
| Return the class name. | |
| var_cmp_index | comparison_index () |
| Returns the comparison index (type identified) of the var. | |
| void | copy_to (void *dest) const |
| Copies the value to another location (in-place copy). | |
| var | op_add (const var &v) |
| Addition operator. | |
| var | op_sub (const var &v) |
| Subtraction operator. | |
| var | op_mul (const var &) |
| Multiplication operator. | |
| var | op_div (const var &) |
| Division operator. | |
| var | op_mod (const var &) |
| Modulus operator. | |
| var | op_neg () |
| Unary minus. | |
| var | op_lshift (const var &) |
| Left-shift operator. | |
| var | op_rshift (const var &) |
| Right-shift operator. | |
| var | op_and (const var &) |
| Bitwisze and operator. | |
| var | op_or (const var &v) |
| Bitwise or operator. | |
| var | op_xor (const var &v) |
| Bitwise xor operator. | |
| void | pickle (pickler &p) |
| Pickle the object. | |
| void | unpickle (unpickler &u) |
| Unpickle the object. | |
Definition at line 17 of file null.cpp.
| void dynamic::types::null_impl::pickle | ( | pickler & | ) | [inline, virtual] |
Pickle the object.
Reimplemented from dynamic::var_impl.
Definition at line 100 of file null.cpp.
References dynamic::pickler::write_object_type().
| void dynamic::types::null_impl::unpickle | ( | unpickler & | ) | [inline, virtual] |
1.5.7.1