-
Notifications
You must be signed in to change notification settings - Fork 9.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add double-int to format registry (#3381)
- Loading branch information
1 parent
e2aeb00
commit 1d8ce42
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--- | ||
owner: mikekistler | ||
issue: | ||
description: an integer that can be stored in an IEEE 754 double-precision number without loss of precision | ||
base_type: integer | ||
layout: default | ||
--- | ||
|
||
# <a href="..">{{ page.collection }}</a> | ||
|
||
## {{ page.slug }} - {{ page.description }} | ||
|
||
Base type: `{{ page.base_type }}`. | ||
|
||
The `{{page.slug}}` format represents an integer that can be stored in an IEEE 754 double-precision number without loss of precision. The range of values is -(2<sup>53</sup>)+1 to (2<sup>53</sup>)-1. | ||
|
||
This format is useful for systems that need to support languages (such as JavaScript) that store all numeric values as IEEE 754 double-precision numbers. | ||
|
||
{% if page.issue %} | ||
### GitHub Issue | ||
|
||
* [#{{ page.issue }}](https://github.com/OAI/OpenAPI-Specification/issues/{{ page.issue }}) | ||
{% endif %} | ||
|
||
{% if page.remarks %} | ||
### Remarks | ||
|
||
{{ page.remarks }} | ||
{% endif %} |