mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
Sort functions by name alphabetically
This commit is contained in:
parent
1ebe117085
commit
841a1f08da
@ -19,14 +19,14 @@ var Funcs map[string]ast.Function
|
|||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
Funcs = map[string]ast.Function{
|
Funcs = map[string]ast.Function{
|
||||||
|
"element": interpolationFuncElement(),
|
||||||
"file": interpolationFuncFile(),
|
"file": interpolationFuncFile(),
|
||||||
"format": interpolationFuncFormat(),
|
"format": interpolationFuncFormat(),
|
||||||
"formatlist": interpolationFuncFormatList(),
|
"formatlist": interpolationFuncFormatList(),
|
||||||
"join": interpolationFuncJoin(),
|
"join": interpolationFuncJoin(),
|
||||||
"element": interpolationFuncElement(),
|
"length": interpolationFuncLength(),
|
||||||
"replace": interpolationFuncReplace(),
|
"replace": interpolationFuncReplace(),
|
||||||
"split": interpolationFuncSplit(),
|
"split": interpolationFuncSplit(),
|
||||||
"length": interpolationFuncLength(),
|
|
||||||
|
|
||||||
// Concat is a little useless now since we supported embeddded
|
// Concat is a little useless now since we supported embeddded
|
||||||
// interpolations but we keep it around for backwards compat reasons.
|
// interpolations but we keep it around for backwards compat reasons.
|
||||||
|
Loading…
Reference in New Issue
Block a user