1 package toml 2 3 // ValueStringRepresentation transforms an interface{} value into its toml string representation. 4 func ValueStringRepresentation(v interface{}, commented string, indent string, ord MarshalOrder, arraysOneElementPerLine bool) (string, error) { 5 return tomlValueStringRepresentation(v, commented, indent, ord, arraysOneElementPerLine) 6 } 7