help wanted
Repository metrics
- Stars
- (4,472 個のスター)
- PR merge metrics
- (平均マージ 8m) (30d で 3 merged PRs)
説明
We should support structs that have type parameters and translate them to an ABI-compatible class template in C++.
#[cxx::bridge]
mod ffi {
struct Generic<T> {
wow: T,
}
extern "C" {
fn f(g: Generic<String>);
}
}