Description provides an overview of the function's purpose. Usage examples should be included on specific overloads.
()
| 119 | // |
| 120 | // Usage examples should be included on specific overloads. |
| 121 | func (f *FunctionDecl) Description() string { |
| 122 | if f == nil { |
| 123 | return "" |
| 124 | } |
| 125 | return f.doc |
| 126 | } |
| 127 | |
| 128 | // IsDeclarationDisabled indicates that the function implementation should be added to the dispatcher, but the |
| 129 | // declaration should not be exposed for use in expressions. |
no outgoing calls