當前位置: 首頁>>代碼示例>>Golang>>正文


Golang Segment.NewCompositeList方法代碼示例

本文整理匯總了Golang中github.com/jmckaskill/go-capnproto.Segment.NewCompositeList方法的典型用法代碼示例。如果您正苦於以下問題:Golang Segment.NewCompositeList方法的具體用法?Golang Segment.NewCompositeList怎麽用?Golang Segment.NewCompositeList使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在github.com/jmckaskill/go-capnproto.Segment的用法示例。


在下文中一共展示了Segment.NewCompositeList方法的12個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: NewCodeGeneratorRequestRequestedFileImportList

func NewCodeGeneratorRequestRequestedFileImportList(s *C.Segment, sz int) CodeGeneratorRequestRequestedFileImport_List {
	return CodeGeneratorRequestRequestedFileImport_List(s.NewCompositeList(8, 1, sz))
}
開發者ID:peterwald,項目名稱:go-capnproto,代碼行數:3,代碼來源:schema.capnp.go

示例2: NewAnnotationList

func NewAnnotationList(s *C.Segment, sz int) Annotation_List {
	return Annotation_List(s.NewCompositeList(8, 1, sz))
}
開發者ID:peterwald,項目名稱:go-capnproto,代碼行數:3,代碼來源:schema.capnp.go

示例3: NewCodeGeneratorRequestList

func NewCodeGeneratorRequestList(s *C.Segment, sz int) CodeGeneratorRequest_List {
	return CodeGeneratorRequest_List(s.NewCompositeList(0, 2, sz))
}
開發者ID:peterwald,項目名稱:go-capnproto,代碼行數:3,代碼來源:schema.capnp.go

示例4: NewTypeList

func NewTypeList(s *C.Segment, sz int) Type_List { return Type_List(s.NewCompositeList(16, 1, sz)) }
開發者ID:peterwald,項目名稱:go-capnproto,代碼行數:1,代碼來源:schema.capnp.go

示例5: NewValueList

func NewValueList(s *C.Segment, sz int) Value_List { return Value_List(s.NewCompositeList(16, 1, sz)) }
開發者ID:peterwald,項目名稱:go-capnproto,代碼行數:1,代碼來源:schema.capnp.go

示例6: NewMethodList

func NewMethodList(s *C.Segment, sz int) Method_List { return Method_List(s.NewCompositeList(8, 4, sz)) }
開發者ID:peterwald,項目名稱:go-capnproto,代碼行數:1,代碼來源:schema.capnp.go

示例7: NewMethodParamList

func NewMethodParamList(s *C.Segment, sz int) MethodParam_List {
	return MethodParam_List(s.NewCompositeList(0, 4, sz))
}
開發者ID:peterwald,項目名稱:go-capnproto,代碼行數:3,代碼來源:schema.capnp.go

示例8: NewEnumerantList

func NewEnumerantList(s *C.Segment, sz int) Enumerant_List {
	return Enumerant_List(s.NewCompositeList(8, 2, sz))
}
開發者ID:peterwald,項目名稱:go-capnproto,代碼行數:3,代碼來源:schema.capnp.go

示例9: NewFieldList

func NewFieldList(s *C.Segment, sz int) Field_List { return Field_List(s.NewCompositeList(24, 4, sz)) }
開發者ID:peterwald,項目名稱:go-capnproto,代碼行數:1,代碼來源:schema.capnp.go

示例10: NewNodeNestedNodeList

func NewNodeNestedNodeList(s *C.Segment, sz int) NodeNestedNode_List {
	return NodeNestedNode_List(s.NewCompositeList(8, 1, sz))
}
開發者ID:peterwald,項目名稱:go-capnproto,代碼行數:3,代碼來源:schema.capnp.go

示例11: NewNodeList

func NewNodeList(s *C.Segment, sz int) Node_List { return Node_List(s.NewCompositeList(40, 5, sz)) }
開發者ID:peterwald,項目名稱:go-capnproto,代碼行數:1,代碼來源:schema.capnp.go

示例12: NewTestSTList

func NewTestSTList(s *C.Segment, sz int) TestST_List { return TestST_List(s.NewCompositeList(8, 2, sz)) }
開發者ID:hongchaodeng,項目名稱:serialization-bench,代碼行數:1,代碼來源:data.capnp.go


注:本文中的github.com/jmckaskill/go-capnproto.Segment.NewCompositeList方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。