A type for double ``FLOAT`` floating point types. Typically generates a ``DOUBLE`` or ``DOUBLE_PRECISION`` in DDL, and otherwise acts like a normal :class:`.Float` on the Python side. .. versionadded:: 2.0
| 777 | |
| 778 | |
| 779 | class Double(Float[_N]): |
| 780 | """A type for double ``FLOAT`` floating point types. |
| 781 | |
| 782 | Typically generates a ``DOUBLE`` or ``DOUBLE_PRECISION`` in DDL, |
| 783 | and otherwise acts like a normal :class:`.Float` on the Python |
| 784 | side. |
| 785 | |
| 786 | .. versionadded:: 2.0 |
| 787 | |
| 788 | """ |
| 789 | |
| 790 | __visit_name__ = "double" |
| 791 | |
| 792 | |
| 793 | class _RenderISO8601NoT: |
no outgoing calls