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


Golang Type.IsVoid方法代码示例

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


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

示例1: returnsToSchema

func returnsToSchema(pidl *idl.Idl, t *idl.Type) *swagger2.Schema {
	sc := new(swagger2.Schema)
	// sc.Title = f.Name
	if t.IsVoid() {
		// nil schema means the operation returns no content
		return nil
	} else {
		it := typeToItems(pidl, t)
		sc.Ref = it.Ref
		sc.Type = it.Type
		sc.Format = it.Format
		sc.ItemsDef.Items = it.Items
		sc.Enum = it.Enum
		sc.AdditionalProperties = it.AdditionalProperties
	}
	return sc
}
开发者ID:babelrpc,项目名称:babel,代码行数:17,代码来源:helpers.go

示例2: formatType

// formatType returns the Type as a string in format suitable for C#.
func (gen *goGenerator) formatType(t *idl.Type) string {
	var s string
	ms, ok := goTypes[t.Name]
	if !ok {
		ms = t.Name
	}
	if t.IsList() {
		s = fmt.Sprintf(ms, gen.formatType(t.ValueType))
	} else if t.IsMap() {
		s = fmt.Sprintf(ms, goTypes[t.KeyType.Name], gen.formatType(t.ValueType))
	} else if t.IsBinary() {
		s = ms
	} else if t.IsPrimitive() {
		s = "*" + ms
	} else if t.IsEnum(gen.tplRootIdl) {
		s = "*" + ms
	} else if t.IsVoid() {
		s = ""
	} else {
		s = "*" + ms
	}
	return s
}
开发者ID:babelrpc,项目名称:babel,代码行数:24,代码来源:go.go

示例3: isVoid

func (gen *javaGenerator) isVoid(t *idl.Type) bool {
	return t.IsVoid()
}
开发者ID:babelrpc,项目名称:babel,代码行数:3,代码来源:java.go

示例4: isVoid

func (gen *csharpGenerator) isVoid(t *idl.Type) bool {
	return t.IsVoid()
}
开发者ID:babelrpc,项目名称:babel,代码行数:3,代码来源:csharp.go


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