comparison CodeAnalysis/FunctionDocumentation.mustache @ 203:28531e615104

documented orthanc.RegisterIncomingHttpRequestFilter() and orthanc.RegisterOnStoredInstanceCallback()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 03 Jul 2024 12:03:09 +0200
parents 7e8085f80df5
children d7acfccc0d0b
comparison
equal deleted inserted replaced
202:ba4dd45ab937 203:28531e615104
1 {{#args}}{{#callable_protocol_return}}
2 class {{callable_type}}(typing.Protocol):
3 def __call__(self, {{callable_protocol_args}}) -> {{callable_protocol_return}}:
4 ...
5 {{/callable_protocol_return}}{{/args}}
1 {{#documentation.short_description}} 6 {{#documentation.short_description}}
2 # {{documentation.short_description}} 7 # {{documentation.short_description}}
3 {{/documentation.short_description}} 8 {{/documentation.short_description}}
4 def {{short_name}}({{#self}}self{{#documentation.has_args}}, {{/documentation.has_args}}{{/self}}{{documentation.args_declaration}}) -> {{documentation.return_type}}: 9 def {{short_name}}({{#self}}self{{#documentation.has_args}}, {{/documentation.has_args}}{{/self}}{{documentation.args_declaration}}) -> {{documentation.return_type}}:
5 """ 10 """