We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Sometimes it would be nice to access the underlying object of the Proxy object of a smart_lock, e.g. via the dereference operator.
Proxy
smart_lock
concurrent::smart_lock<std::vector<int>> threadSafeVector; ... auto guardedVector = threadSafeVector.getScopeGuard(); doSomethingWithVector(*guardedVector);
The text was updated successfully, but these errors were encountered:
iox-eclipse-iceoryx#1966 Implement dereference operator
53fa0f7
Merge pull request #1967 from ApexAI/iox-1966-implement-dereference-o…
fa86dcb
…perator-for-proxy iox-#1966 implement dereference operator
b2d033e
e704b08
FerdinandSpitzschnueffler
Successfully merging a pull request may close this issue.
Brief feature description
Sometimes it would be nice to access the underlying object of the
Proxy
object of asmart_lock
, e.g. via the dereference operator.The text was updated successfully, but these errors were encountered: