示例#1
0
/* The ValToStr method converts the input value into a
   string type.
*/
func ValToStr(item value.Value) string {
	//Call String() method in value.Value to convert
	//value to string.

	return item.String()
}