Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/orestonce/go2cpp
将go接口方便导出为c++接口的一个工具
https://github.com/orestonce/go2cpp
Last synced: 23 days ago
JSON representation
将go接口方便导出为c++接口的一个工具
- Host: GitHub
- URL: https://github.com/orestonce/go2cpp
- Owner: orestonce
- License: mit
- Created: 2021-10-07T06:28:58.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-08-04T08:56:41.000Z (3 months ago)
- Last Synced: 2024-08-04T09:40:30.624Z (3 months ago)
- Language: Go
- Homepage:
- Size: 41 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
go2cpp : 将go接口方便导出为c++接口的一个工具
====支持的函数:
* 入参个数无限制
* 出参个数为0或者1支持的类型(golang):
* [x] bool
* [x] int8/uint8(byte)
* [x] int16/uint16
* [x] int32/uint32
* [ ] int64/uint64
* [x] int
* [x] string
* [x] slice/切片
* [x] struct
* [x] map
* [x] float32/float64TODO:
* [ ] 支持go调用c++