doc: add econ-based text doc exported from previous ear-based eCdoc format.
[sdk] / doc / ecereCOM / double.econ
1 {
2    name = "double",
3    description = "A double precision float data type.\n"
4       "\n"
5       "Memory occupied: 64 bits(or 8 bytes)\n"
6       "\n"
7       "A double data type holds a real number including the portion which follows the decimal point. The minimum precision for a double is 10 decimal digits. A doubles range is from 2.2250738585072014e-308 to 1.7976931348623158e+308.",
8    usage = "Used in the declaration section of code, which is before any statements.",
9    example = "double aDouble; // A stand alone declaration of a double.\n"
10       "double a, b; // Declaring two doubles at the same time.\n"
11       "double c = 12.1234567899; // Declaring and initializing a double at the same time.",
12    remarks = "Unlike other languages, the double data type is actually a class.\n"
13       "\n"
14       "double is equivalent to a double in C.",
15    also = "bool, byte, char, char *, enum, float, int, int64, uint, uint16, uint32, uint64, OnCompare(), OnCopy(), OnDisplay(), OnEdit(), OnFree(), OnGetDataFromString(), OnGetString(), OnSaveEdit(), OnSerialize(), OnUnserialize()"
16 }