...

Source file src/github.com/pelletier/go-toml/tomltree_writepub.go

Documentation: github.com/pelletier/go-toml

     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  

View as plain text