List of Go postfix completion templates
For more information about postfix templates, see Postfix code completion.
This table summarizes the postfix completion templates that you can use with your Go code.
Name | Description | Example. Before | Example. After |
---|---|---|---|
| Negates the boolean expression. |
|
|
| Adds the & operator before the expression. |
|
|
| Creates a dereference expression. |
|
|
| Wraps the expression with the append() built-in function and assigns its result to the expression. |
|
|
| Wraps the expression with the append() built-in function. |
|
|
| Wraps the expression with the append() built-in function and assigns its result to the expression. |
|
|
| Wraps the expression with the errors.As() function. |
|
|
| Wraps the expression with the cap() built-in function. |
|
|
| Wraps the expression with the close() built-in function. |
|
|
| Wraps the expression with the complex() built-in function. |
|
|
| Wraps the expression with the copy() built-in function. |
|
|
| Creates a dereference expression. |
|
|
| Wraps the expression with the delete() built-in function. |
|
|
| Creates a dereference expression. |
|
|
| Turns the E expression into if !E {}. |
|
|
| Creates the range form of the for loop to iterate over a slice or an array. |
|
|
| Creates the range form of the for loop with an index and a value to iterate over a slice or an array. |
|
|
| Turns the E expression into if E {}. |
|
|
| Wraps the expression with the imag() built-in function. |
|
|
| Wraps the expression with the errors.Is() function. |
|
|
| Wraps the expression with the len() built-in function. |
|
|
| Wraps the expression with the if statement that checks whether the expression is nil. |
|
|
| Checks whether the if condition expression is nil. |
|
|
| Wraps the expression with the if statement that checks whether the expression is not nil. |
|
|
| Checks whether the if condition expression is not nil. |
|
|
| Negates the boolean expression. |
|
|
| Wraps the expression with the if statement that checks whether the expression is not nil. |
|
|
| Checks whether the if condition expression is not nil. |
|
|
| Adds the & operator before the expression. |
|
|
| Wraps the expression with the panic() built-in function. |
|
|
| Wraps the expression with parentheses. |
|
|
| Generates the code to parse float64 from string. |
|
|
| Generates the code to parse int from string. |
|
|
| Adds the & operator before the expression. |
|
|
| Wraps the expression with the print() built-in function. |
|
|
| Wraps the expression with the println() built-in function. |
|
|
| Wraps the expression with the real() built-in function. |
|
|
| Creates a copy of a slice with a range of elements removed. For more information about operations with slices, see Slice Tricks in the golang repository at github.com. |
|
|
| Generates boilerplate code for idiomatic error handling. Can be called on variables and expressions of the error type. Replaces the err variable with the following construction: if err != nil { return value1, value2, ... } Replaces the expr expression with the following construction: if err := expr; err != nil { return value1, value2, ... } Each value is either the err variable or a default value of the corresponding return type of the enclosing function. You can call this template on expressions with multiple values. |
|
|
| Adds the return keyword before the expression. |
|
|
| Generates boilerplate code for idiomatic error handling. Can be called on variables and expressions of the error type. Replaces variable err with the following construction: if err != nil { return value1, value2, ... } Replaces expression expr with the following construction: if err := expr; err != nil { return value1, value2, ... } Each value is either the err variable or a default value of the corresponding return type of the enclosing function. You can call this template on expressions with multiple values. |
|
|
| Wraps the expression with the sort.Float64s() function. |
|
|
| Wraps the expression with the sort.Ints() function. |
|
|
| Wraps the expression with the sort.Slice() function. |
|
|
| Wraps the expression with the sort.Sort() function. |
|
|
| Wraps the expression with the sort.Strings() function. |
|
|
| Assigns the expression to a new variable by using :=. |
|
|
| Generates boilerplate code for idiomatic error handling. You can invoke the template on calls that return error or on any expressions of the error type. The template introduces new variables, assigns the expression to them, and checks if error is not nil by using the following code: if err != nil { return value1, value2, ... } Each value is either the err variable or a default value of the corresponding return type of the enclosing function. |
|
|
Thanks for your feedback!