buf := EmptyByteBuf()
buf.WriteString("abcdef")
buf.WriteInt64(int64(12345))
clone := buf.Clone()
buf := EmptyByteBuf()
buf.WriteInt64(int64(12345)) // readable bytes len = 8
v := buf.ReadInt64() // v = int64(12345)
bs := buf.Skip(2).ReadBytes(3)
buf.Reset()