You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
I needed "split" specifically so I can do something like:
```hcl
variable PLATFORMS {
default = "linux/amd64"
}
target foo {
platforms = split(",", "${PLATFORMS}")
# other stuff
}
```
Where the existing "csvdecode" does not work for this because it parses
the string into a list of objects instead of a list of strings.
I went ahead and just added all the available new functions.
Signed-off-by: Brian Goff <cpuguy83@gmail.com>
|
6 years ago | |
|---|---|---|
| .. | ||
| compare_types.go | 6 years ago | |
| conversion.go | 6 years ago | |
| conversion_capsule.go | 6 years ago | |
| conversion_collection.go | 6 years ago | |
| conversion_dynamic.go | 6 years ago | |
| conversion_object.go | 6 years ago | |
| conversion_primitive.go | 6 years ago | |
| conversion_tuple.go | 6 years ago | |
| doc.go | 6 years ago | |
| mismatch_msg.go | 6 years ago | |
| public.go | 6 years ago | |
| sort_types.go | 6 years ago | |
| unify.go | 6 years ago | |