This is an automated email from the ASF dual-hosted git repository.
chaokunyang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/fory-site.git
The following commit(s) were added to refs/heads/main by this push:
new f415a8f04 🔄 synced local 'docs/docs/guide/' with remote 'docs/guide/'
f415a8f04 is described below
commit f415a8f04ec61d333365dfc8c4ae1c53760e6e31
Author: chaokunyang <[email protected]>
AuthorDate: Mon Jan 12 04:17:06 2026 +0000
🔄 synced local 'docs/docs/guide/' with remote 'docs/guide/'
---
docs/docs/guide/go/supported-types.md | 28 ++++++++++++++--------------
1 file changed, 14 insertions(+), 14 deletions(-)
diff --git a/docs/docs/guide/go/supported-types.md
b/docs/docs/guide/go/supported-types.md
index 5b68d50c7..9f048e210 100644
--- a/docs/docs/guide/go/supported-types.md
+++ b/docs/docs/guide/go/supported-types.md
@@ -334,20 +334,20 @@ data, _ := f.Serialize(status)
## Cross-Language Type Mapping
-| Go Type | Java | Python | C++ | Rust |
-| --------------- | -------- | --------- | ------------------ | ------------ |
-| `bool` | boolean | bool | bool | bool |
-| `int8` | byte | int | int8_t | i8 |
-| `int16` | short | int | int16_t | i16 |
-| `int32` | int | int | int32_t | i32 |
-| `int64` | long | int | int64_t | i64 |
-| `float32` | float | float | float | f32 |
-| `float64` | double | float | double | f64 |
-| `string` | String | str | std::string | String |
-| `[]T` | List<T> | list | std::vector<T> | Vec<T> |
-| `map[K]V` | Map<K,V> | dict | std::unordered_map | HashMap<K,V> |
-| `time.Time` | Instant | datetime | - | - |
-| `time.Duration` | Duration | timedelta | - | - |
+| Go Type | Java | Python | C++ | Rust
|
+| --------------- | ---------- | --------- | ------------------ |
-------------- |
+| `bool` | boolean | bool | bool | bool
|
+| `int8` | byte | int | int8_t | i8
|
+| `int16` | short | int | int16_t | i16
|
+| `int32` | int | int | int32_t | i32
|
+| `int64` | long | int | int64_t | i64
|
+| `float32` | float | float | float | f32
|
+| `float64` | double | float | double | f64
|
+| `string` | String | str | std::string | String
|
+| `[]T` | `List<T>` | list | `std::vector<T>` | `Vec<T>`
|
+| `map[K]V` | `Map<K,V>` | dict | std::unordered_map |
`HashMap<K,V>` |
+| `time.Time` | Instant | datetime | - | -
|
+| `time.Duration` | Duration | timedelta | - | -
|
See [Cross-Language Serialization](cross-language) for detailed mapping.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]