We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e5e7a6 commit 7d68dd4Copy full SHA for 7d68dd4
doc/developer/workflow.rst
@@ -1021,6 +1021,15 @@ JSON Output
1021
1022
All JSON keys are to be camelCased, with no spaces.
1023
1024
+Use of const
1025
+^^^^^^^^^^^^
1026
+
1027
+Please consider using ``const`` when possible: it's a useful hint to
1028
+callers about the limits to side-effects from your apis, and it makes
1029
+it possible to use your apis in paths that involve ``const``
1030
+objects. If you encounter existing apis that *could* be ``const``,
1031
+consider including changes in your own pull-request.
1032
1033
1034
.. _documentation:
1035
0 commit comments