[Groonga-commit] groonga/grnci at a967534 [master] Improve comments.

Back to archive index

Susumu Yata null+****@clear*****
Fri Jul 28 14:57:21 JST 2017


Susumu Yata	2017-07-28 14:57:21 +0900 (Fri, 28 Jul 2017)

  New Revision: a9675348305193737f220e836ca0664ce5c9fd8e
  https://github.com/groonga/grnci/commit/a9675348305193737f220e836ca0664ce5c9fd8e

  Message:
    Improve comments.

  Modified files:
    v2/json.go

  Modified: v2/json.go (+4 -0)
===================================================================
--- v2/json.go    2017-07-28 14:46:01 +0900 (7f4d237)
+++ v2/json.go    2017-07-28 14:57:21 +0900 (edd313a)
@@ -84,6 +84,7 @@ func AppendJSONGeo(buf []byte, v Geo) []byte {
 }
 
 // AppendJSONValue appends the JSON-encoded v to buf and returns the extended buffer.
+// In addition to basic types, pointer, interface, array and slice are supported.
 // If the type of v is unsupported, AppendJSONValue appends "null".
 func AppendJSONValue(buf []byte, v reflect.Value) []byte {
 	switch v.Kind() {
@@ -142,6 +143,7 @@ func AppendJSONValue(buf []byte, v reflect.Value) []byte {
 }
 
 // AppendJSON appends the JSON-encoded v to buf and returns the extended buffer.
+// In addition to basic types, pointer, interface, array and slice are supported.
 // If the type of v is unsupported, AppendJSON appends "null".
 func AppendJSON(buf []byte, v interface{}) []byte {
 	if v == nil {
@@ -186,12 +188,14 @@ func EncodeJSONGeo(v Geo) string {
 }
 
 // EncodeJSONValue returns the JSON-encoded v.
+// In addition to basic types, pointer, interface, array and slice are supported.
 // If the type of v is unsupported, EncodeJSONValue returns "null".
 func EncodeJSONValue(v reflect.Value) string {
 	return string(AppendJSONValue(nil, v))
 }
 
 // EncodeJSON returns the JSON-encoded v.
+// In addition to basic types, pointer, interface, array and slice are supported.
 // If the type of v is unsupported, EncodeJSON returns "null".
 func EncodeJSON(v interface{}) string {
 	return string(AppendJSON(nil, v))
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-commit mailing list
Back to archive index