Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
sds-keyval
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
2
Issues
2
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sds
sds-keyval
Commits
cc38602b
Commit
cc38602b
authored
Aug 28, 2019
by
Matthieu Dorier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added missing exists() method in C++ database
parent
13c31d4f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
include/sdskv-client.hpp
include/sdskv-client.hpp
+8
-0
No files found.
include/sdskv-client.hpp
View file @
cc38602b
...
...
@@ -1305,6 +1305,14 @@ class database {
return
m_ph
.
m_client
->
get
(
*
this
,
std
::
forward
<
T
>
(
args
)...);
}
/**
* @brief @see client::exists
*/
template
<
typename
...
T
>
decltype
(
auto
)
exists
(
T
&&
...
args
)
const
{
return
m_ph
.
m_client
->
exists
(
*
this
,
std
::
forward
<
T
>
(
args
)...);
}
/**
* @brief @see client::erase.
*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment