[NAME] ALL.dao.type.double [TITLE] Double Precision FP Number Type [DESCRIPTION] double is the built-in primitive data type for double precision floating point numbers. 0.1 Definition 1 Double ::= ( DecInteger | DecNumber | SciNumber ) [ 'D' ] where DecInteger is defined dao.type.int, and DecNumber and DecSinglePrecision are defined in dao.type.float. 0.2 Examples 1 A = .12 2 A = .12D 3 B = 12. 4 B = 12.D 5 C = 12.5 6 C = 12.5D 7 D = 123D 8 E = 2E-3 9 E = 2E-3D