本文整理汇总了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
}
示例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
}
示例3: isVoid
func (gen *javaGenerator) isVoid(t *idl.Type) bool {
return t.IsVoid()
}
示例4: isVoid
func (gen *csharpGenerator) isVoid(t *idl.Type) bool {
return t.IsVoid()
}