mirror of
https://github.com/nlohmann/json.git
synced 2026-03-07 09:41:23 +00:00
* mkdocs: add string_view examples * mkdocs: reference underlying operators * mkdocs: add operator<=> examples * mkdocs: fix style check issues * mkdocs: tweak BJData page * mkdocs: add CMake option hints to macros * mkdocs: fix JSON_DISABLE_ENUM_SERIALIZATION definition * mkdocs: fix link to unit-udt.cpp * mkdocs: fix "Arbitrary Type Conversions" title * mkdocs: link to api/macros/*.md instead of features/macros.md * mkdocs: document JSON_DisableEnumSerialization CMake option * mkdocs: encode required C++ standard in example files * docset: detect gsed/sed * docset: update index * docset: fix CSS patching * docset: add list_missing_pages make target * docset: add list_removed_paths make target * docset: replace page titles with name from index * docset: add install target for Zeal docset browser * Use GCC_TOOL in ci_test_documentation target
3.2 KiB
3.2 KiB
nlohmann::basic_json::meta
static basic_json meta();
This function returns a JSON object with information about the library, including the version number and information on the platform and compiler.
Return value
JSON object holding version information
| key | description |
|---|---|
compiler |
Information on the used compiler. It is an object with the following keys: c++ (the used C++ standard), family (the compiler family; possible values are clang, icc, gcc, ilecpp, msvc, pgcpp, sunpro, and unknown), and version (the compiler version). |
copyright |
The copyright line for the library as string. |
name |
The name of the library as string. |
platform |
The used platform as string. Possible values are win32, linux, apple, unix, and unknown. |
url |
The URL of the project as string. |
version |
The version of the library. It is an object with the following keys: major, minor, and patch as defined by Semantic Versioning, and string (the version string). |
Exception safety
Strong guarantee: if an exception is thrown, there are no changes to any JSON value.
Complexity
Constant.
Examples
??? example
The following code shows an example output of the `meta()` function.
```cpp
--8<-- "examples/meta.cpp"
```
Output:
```json
--8<-- "examples/meta.output"
```
Note the output is platform-dependent.
See also
- NLOHMANN_JSON_VERSION_MAJOR/NLOHMANN_JSON_VERSION_MINOR/NLOHMANN_JSON_VERSION_PATCH - library version information
Version history
- Added in version 2.1.0.