std::collections::object

Object

struct Object (Printable)
{
	typeid type;
	Allocator allocator;
	union
	{
		uint128 i;
		double f;
		bool b;
		String s;
		void* other;
		ObjectInternalList array;
		ObjectInternalMap map;
	}
}

Members

Methods