コード例 #1
0
ファイル: botapi.capnp.go プロジェクト: gophergala2016/Gobots
func NewDirection_List(s *capnp.Segment, sz int32) (Direction_List, error) {
	l, err := capnp.NewUInt16List(s, sz)
	if err != nil {
		return Direction_List{}, err
	}
	return Direction_List{l.List}, nil
}
コード例 #2
0
func NewSide_List(s *capnp.Segment, sz int32) (Side_List, error) {
	l, err := capnp.NewUInt16List(s, sz)
	return Side_List{l.List}, err
}
コード例 #3
0
ファイル: botapi.capnp.go プロジェクト: bcspragu/Gobots
func NewCellType_List(s *capnp.Segment, sz int32) (CellType_List, error) {
	l, err := capnp.NewUInt16List(s, sz)
	return CellType_List{l.List}, err
}
コード例 #4
0
ファイル: botapi.capnp.go プロジェクト: bcspragu/Gobots
func NewFaction_List(s *capnp.Segment, sz int32) (Faction_List, error) {
	l, err := capnp.NewUInt16List(s, sz)
	return Faction_List{l.List}, err
}