# streambyte **Repository Path**: RuiCat/streambyte ## Basic Information - **Project Name**: streambyte - **Description**: No description available - **Primary Language**: Go - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2020-05-27 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 库介绍 > Go 序列化库 ## 核心函数 * ### Marshal 序列化 * ### Unmarshal 反序列化 * ### Write 写结构体 > b := make([]byte, 0, 0) > w := &Write{Byte: &b, Order: binary.LittleEndian} * ### Read 读结构体 > b := make([]byte, 0, 0) > r := &Read{Byte: &b, Order: binary.LittleEndian} # 注意事项 > 本库为Go底层指针原理与使用教学库,用作项目使用本库不保证安全.