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


Golang capnproto2.UInt16List类代码示例

本文整理汇总了Golang中zombiezen/com/go/capnproto2.UInt16List的典型用法代码示例。如果您正苦于以下问题:Golang UInt16List类的具体用法?Golang UInt16List怎么用?Golang UInt16List使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


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

示例1: At

func (l Side_List) At(i int) Side {
	ul := capnp.UInt16List{List: l.List}
	return Side(ul.At(i))
}
开发者ID:zombiezen,项目名称:go-capnproto2,代码行数:4,代码来源:rpc-twoparty.capnp.go

示例2: Set

func (l Side_List) Set(i int, v Side) {
	ul := capnp.UInt16List{List: l.List}
	ul.Set(i, uint16(v))
}
开发者ID:zombiezen,项目名称:go-capnproto2,代码行数:4,代码来源:rpc-twoparty.capnp.go

示例3: Set

func (l Direction_List) Set(i int, v Direction) {
	ul := capnp.UInt16List{List: l.List}
	ul.Set(i, uint16(v))
}
开发者ID:gophergala2016,项目名称:Gobots,代码行数:4,代码来源:botapi.capnp.go

示例4: At

func (l Direction_List) At(i int) Direction {
	ul := capnp.UInt16List{List: l.List}
	return Direction(ul.At(i))
}
开发者ID:gophergala2016,项目名称:Gobots,代码行数:4,代码来源:botapi.capnp.go

示例5: Set

func (l CellType_List) Set(i int, v CellType) {
	ul := capnp.UInt16List{List: l.List}
	ul.Set(i, uint16(v))
}
开发者ID:bcspragu,项目名称:Gobots,代码行数:4,代码来源:botapi.capnp.go

示例6: At

func (l CellType_List) At(i int) CellType {
	ul := capnp.UInt16List{List: l.List}
	return CellType(ul.At(i))
}
开发者ID:bcspragu,项目名称:Gobots,代码行数:4,代码来源:botapi.capnp.go


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