タグ付けされた質問 「documentation-generation」


3
JSDoc:オブジェクト構造を返す
返されるオブジェクトの構造をJSDocに通知するにはどうすればよいですか。私は@return {{field1: type, field2: type, ...}} description構文を見つけて試しました: /** * Returns a coordinate from a given mouse or touch event * @param {TouchEvent|MouseEvent|jQuery.Event} e * A valid mouse or touch event or a jQuery event wrapping such an * event. * @param {string} [type="page"] * A string representing the type of …

8
パラメータを使用してメソッドを文書化する方法は?
Pythonのドキュメント文字列を使用して、パラメーターを含むメソッドをドキュメント化する方法は? 編集: PEP 257はこの例を示します: def complex(real=0.0, imag=0.0): """Form a complex number. Keyword arguments: real -- the real part (default 0.0) imag -- the imaginary part (default 0.0) """ if imag == 0.0 and real == 0.0: return complex_zero ... これはほとんどのPython開発者が使用する規則ですか? Keyword arguments: <parameter name> -- Definition (default value if any) …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.