vendor/github.com/pelletier/go-toml/tomltree_writepub.go
changeset 265 05c40b36d3b2
parent 264 8f478162d991
child 266 80973a656b81
equal deleted inserted replaced
264:8f478162d991 265:05c40b36d3b2
     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 }