-
Notifications
You must be signed in to change notification settings - Fork 472
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(binding/c): add is_exist to operator #1892
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We want binding to be like a native library. We may shouldn't add primitive types like Vec.
This only expose a pointer to vector. And all APIs are exposed by us. If we do not expose types like
|
This comment was marked as resolved.
This comment was marked as resolved.
I will change the naming of |
Thank you very much for your effort and patience. I learned a lot about C programming! |
* Add is_exist operation * Update some rustdocs Signed-off-by: Ji-Xinyou <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great, thanks a lot!
feat(bindings/c): add is_exist operation on operator * Add is_exist operation * Update some rustdocs Signed-off-by: Ji-Xinyou <[email protected]>
is_exist
operation to check whether the path exists, which is required in BDD tests.is_exist
will be added when we support theFs
backend.