当前位置: 首页>>代码示例>>Golang>>正文


Golang Writer.Raw方法代码示例

本文整理汇总了Golang中github.com/mailru/easyjson/jwriter.Writer.Raw方法的典型用法代码示例。如果您正苦于以下问题:Golang Writer.Raw方法的具体用法?Golang Writer.Raw怎么用?Golang Writer.Raw使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在github.com/mailru/easyjson/jwriter.Writer的用法示例。


在下文中一共展示了Writer.Raw方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。

示例1: MarshalEasyJSON

// MarshalEasyJSON does JSON marshaling using easyjson interface.
func (v *RawMessage) MarshalEasyJSON(w *jwriter.Writer) {
	if len(*v) == 0 {
		w.RawString("null")
	} else {
		w.Raw(*v, nil)
	}
}
开发者ID:,项目名称:,代码行数:8,代码来源:

示例2: easyjson_encode_github_com_buger_jsonparser_benchmark_MediumPayload

func easyjson_encode_github_com_buger_jsonparser_benchmark_MediumPayload(out *jwriter.Writer, in *MediumPayload) {
	out.RawByte('{')
	first := true
	_ = first
	if !first {
		out.RawByte(',')
	}
	first = false
	out.RawString("\"person\":")
	if in.Person == nil {
		out.RawString("null")
	} else {
		(*in.Person).MarshalEasyJSON(out)
	}
	if !first {
		out.RawByte(',')
	}
	first = false
	out.RawString("\"company\":")
	out.RawByte('{')
	v8_first := true
	for v8_name, v8_value := range in.Company {
		if !v8_first {
			out.RawByte(',')
		}
		v8_first = false
		out.String(v8_name)
		out.Raw(json.Marshal(v8_value))
	}
	out.RawByte('}')
	out.RawByte('}')
}
开发者ID:qband,项目名称:down,代码行数:32,代码来源:benchmark_easyjson.go

示例3: easyjson7f5ba663EncodeGithubComSergeiSvistunovGorpcDebug

func easyjson7f5ba663EncodeGithubComSergeiSvistunovGorpcDebug(out *jwriter.Writer, in debug.Debug) {
	out.RawByte('{')
	first := true
	_ = first
	if !first {
		out.RawByte(',')
	}
	first = false
	out.RawString("\"modules\":")
	if in.Modules == nil {
		out.RawString(`null`)
	} else {
		out.RawByte('{')
		v2First := true
		for v2Name, v2Value := range in.Modules {
			if !v2First {
				out.RawByte(',')
			}
			v2First = false
			out.String(string(v2Name))
			out.RawByte(':')
			out.Raw(json.Marshal(v2Value))
		}
		out.RawByte('}')
	}
	out.RawByte('}')
}
开发者ID:sergei-svistunov,项目名称:gorpc,代码行数:27,代码来源:http_json_easyjson.go

示例4: easyjson_encode_go_serialization_benchmarks_A

func easyjson_encode_go_serialization_benchmarks_A(out *jwriter.Writer, in *A) {
	out.RawByte('{')
	first := true
	_ = first
	if !first {
		out.RawByte(',')
	}
	first = false
	out.RawString("\"Name\":")
	out.String(in.Name)
	if !first {
		out.RawByte(',')
	}
	first = false
	out.RawString("\"BirthDay\":")
	out.Raw((in.BirthDay).MarshalJSON())
	if !first {
		out.RawByte(',')
	}
	first = false
	out.RawString("\"Phone\":")
	out.String(in.Phone)
	if !first {
		out.RawByte(',')
	}
	first = false
	out.RawString("\"Siblings\":")
	out.Int(in.Siblings)
	if !first {
		out.RawByte(',')
	}
	first = false
	out.RawString("\"Spouse\":")
	out.Bool(in.Spouse)
	if !first {
		out.RawByte(',')
	}
	first = false
	out.RawString("\"Money\":")
	out.Float64(in.Money)
	out.RawByte('}')
}
开发者ID:alecthomas,项目名称:go_serialization_benchmarks,代码行数:42,代码来源:structdef_easyjson.go

示例5: easyjson7f5ba663EncodeGithubComSergeiSvistunovGorpcTransportHttpJson

func easyjson7f5ba663EncodeGithubComSergeiSvistunovGorpcTransportHttpJson(out *jwriter.Writer, in httpSessionResponse) {
	out.RawByte('{')
	first := true
	_ = first
	if !first {
		out.RawByte(',')
	}
	first = false
	out.RawString("\"result\":")
	out.String(string(in.Result))
	if !first {
		out.RawByte(',')
	}
	first = false
	out.RawString("\"data\":")
	if d, ok := in.Data.(json.Marshaler); ok {
		out.Raw(d.MarshalJSON())
	} else {
		out.Raw(json.Marshal(in.Data))
	}
	if !first {
		out.RawByte(',')
	}
	first = false
	out.RawString("\"error\":")
	out.String(string(in.Error))
	if in.Debug != nil {
		if !first {
			out.RawByte(',')
		}
		first = false
		out.RawString("\"debug\":")
		if in.Debug == nil {
			out.RawString("null")
		} else {
			easyjson7f5ba663EncodeGithubComSergeiSvistunovGorpcDebug(out, *in.Debug)
		}
	}
	out.RawByte('}')
}
开发者ID:sergei-svistunov,项目名称:gorpc,代码行数:40,代码来源:http_json_easyjson.go


注:本文中的github.com/mailru/easyjson/jwriter.Writer.Raw方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。