You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It'd be nice to have this, because then you don't have to mess with rewriting the whole codebase just to support FFI.
How it should look like:
If the code contains, for example, Vec<T>, then preprocessor macro will be added on top of header redefining Vec<T> to vector<T>. Same thing with HashMap<K, V> to map<K, V>.
It'd be nice to have this, because then you don't have to mess with rewriting the whole codebase just to support FFI.
How it should look like:
If the code contains, for example,
Vec<T>
, then preprocessor macro will be added on top of header redefiningVec<T>
tovector<T>
. Same thing withHashMap<K, V>
tomap<K, V>
.Example:
The text was updated successfully, but these errors were encountered: