|
2 | 2 |
|
3 | 3 | このディレクトリには以下のサンプルがあります。 |
4 | 4 |
|
5 | | -| file | example name | note | |
6 | | -| ------------------------- | --------------------------- | ----------------------------------------------------------------- | |
7 | | -| marshal_nonindent.go | json_marshal_non_indent | json.Marshal() を利用したサンプルです. | |
8 | | -| marshal_indent.go | json_marshal_indent | json.MarshalIndent() を利用したサンプルです. | |
9 | | -| marshal_slice.go | json_marshal_slice | json.Marshal() で スライス をマーシャルした場合のサンプルです. | |
10 | | -| marshal_slice.go | json_marshal_map | json.Marshal() で マップ をマーシャルした場合のサンプルです. | |
11 | | -| marshal_date_rfc3339.go | json_marshal_date_rfc3339 | RFC3339形式の日付を json.Marshal するサンプルです. | |
12 | | -| marshal_date_custom.go | json_marshal_date_custom | json.Marshal にて 独自の日付形式 を利用するサンプルです. | |
13 | | -| unmarshal_struct.go | json_unmarshal_struct | json.Unmarshal() を利用したサンプルです. | |
14 | | -| unmarshal_slice.go | json_unmarshal_slice | json 配列 を json.Unmarshal した場合のサンプルです. | |
15 | | -| unmarshal_map.go | json_unmarshal_map | json マップ を json.Unmarshal した場合のサンプルです. | |
16 | | -| unmarshal_date_rfc3339.go | json_unmarshal_date_rfc3339 | RFC3339形式の日付文字列 を json.Unmarshal した場合のサンプルです. | |
17 | | -| unmarshal_date_custom.go | json_unmarshal_date_custom | 独自の日付文字列 を json.Unmarshal した場合のサンプルです. | |
18 | | -| decoder.go | json_decoder | json.NewDecoder を使ったサンプルです. | |
19 | | -| encoder.go | json_encoder | json.Encoder を使ったサンプルです. | |
| 5 | +| file | example name | note | |
| 6 | +| -------------------------- | ---------------------------- | ----------------------------------------------------------------- | |
| 7 | +| marshal_nonindent.go | json_marshal_non_indent | json.Marshal() を利用したサンプルです. | |
| 8 | +| marshal_indent.go | json_marshal_indent | json.MarshalIndent() を利用したサンプルです. | |
| 9 | +| marshal_slice.go | json_marshal_slice | json.Marshal() で スライス をマーシャルした場合のサンプルです. | |
| 10 | +| marshal_slice.go | json_marshal_map | json.Marshal() で マップ をマーシャルした場合のサンプルです. | |
| 11 | +| marshal_date_rfc3339.go | json_marshal_date_rfc3339 | RFC3339形式の日付を json.Marshal するサンプルです. | |
| 12 | +| marshal_date_custom.go | json_marshal_date_custom | json.Marshal にて 独自の日付形式 を利用するサンプルです. | |
| 13 | +| unmarshal_struct.go | json_unmarshal_struct | json.Unmarshal() を利用したサンプルです. | |
| 14 | +| unmarshal_slice.go | json_unmarshal_slice | json 配列 を json.Unmarshal した場合のサンプルです. | |
| 15 | +| unmarshal_map.go | json_unmarshal_map | json マップ を json.Unmarshal した場合のサンプルです. | |
| 16 | +| unmarshal_date_rfc3339.go | json_unmarshal_date_rfc3339 | RFC3339形式の日付文字列 を json.Unmarshal した場合のサンプルです. | |
| 17 | +| unmarshal_date_custom.go | json_unmarshal_date_custom | 独自の日付文字列 を json.Unmarshal した場合のサンプルです. | |
| 18 | +| decoder.go | json_decoder | json.NewDecoder を使ったサンプルです. | |
| 19 | +| encoder.go | json_encoder | json.Encoder を使ったサンプルです. | |
| 20 | +| disallow_unknown_fields.go | json_disallow_unknown_fields | *Decoder.DisallowUnknownFields のサンプルです。 | |
0 commit comments