Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Simox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Florian Leander Singer
Simox
Commits
1acea988
Commit
1acea988
authored
4 years ago
by
Rainer Kartmann
Browse files
Options
Downloads
Patches
Plain Diff
Move functions to simox::alg (keep legacy versions in simox::)
parent
c4c1fb72
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
SimoxUtility/algorithm/get_map_keys_values.h
+28
-1
28 additions, 1 deletion
SimoxUtility/algorithm/get_map_keys_values.h
with
28 additions
and
1 deletion
SimoxUtility/algorithm/get_map_keys_values.h
+
28
−
1
View file @
1acea988
...
...
@@ -6,7 +6,7 @@
#include
<vector>
namespace
simox
namespace
simox
::
alg
{
/// Get the keys of `map` in a vector.
template
<
class
K
,
class
V
,
template
<
class
...
>
class
Template
=
std
::
map
,
class
...
Ts
>
...
...
@@ -65,3 +65,30 @@ namespace simox
return
values
;
}
}
// Legacy definitions in old (general) namespace.
namespace
simox
{
template
<
class
K
,
class
V
,
template
<
class
...
>
class
MapT
=
std
::
map
,
class
...
Ts
>
std
::
vector
<
K
>
get_keys
(
const
MapT
<
K
,
V
,
Ts
...
>&
map
)
{
return
simox
::
alg
::
get_keys
(
map
);
}
template
<
class
K
,
class
V
,
template
<
class
...
>
class
MapT
=
std
::
map
,
class
...
Ts
>
std
::
set
<
K
>
get_keys_set
(
const
MapT
<
K
,
V
,
Ts
...
>&
map
)
{
return
simox
::
alg
::
get_keys_set
(
map
);
}
template
<
class
K
,
class
V
,
template
<
class
...
>
class
MapT
=
std
::
map
,
class
...
Ts
>
std
::
vector
<
V
>
get_values
(
const
MapT
<
K
,
V
,
Ts
...
>&
map
)
{
return
simox
::
alg
::
get_values
(
map
);
}
template
<
class
R
,
class
K
,
class
V
,
template
<
class
...
>
class
MapT
=
std
::
map
,
class
...
Ts
>
std
::
vector
<
V
>
get_values
(
const
MapT
<
K
,
V
,
Ts
...
>&
map
,
std
::
function
<
R
(
const
V
&
)
>
unary_func
)
{
return
simox
::
alg
::
get_values
(
map
,
unary_func
);
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment