Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tnl-dev
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
TNL
tnl-dev
Merge requests
!49
An error occurred while fetching the assigned milestone of the selected merge_request.
Bug fixes
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Bug fixes
JK/bugfixes
into
develop
Overview
0
Commits
17
Pipelines
0
Changes
12
Merged
Jakub Klinkovský
requested to merge
JK/bugfixes
into
develop
5 years ago
Overview
0
Commits
17
Pipelines
0
Changes
12
Expand
0
0
Merge request reports
Compare
develop
version 8
2fe47e38
5 years ago
version 7
4af79c7b
5 years ago
version 6
12fbdec2
5 years ago
version 5
e4d7a2b5
5 years ago
version 4
aa1eeeb1
5 years ago
version 3
7c9fea5a
5 years ago
version 2
6f3ff94c
5 years ago
version 1
d556434f
5 years ago
develop (base)
and
version 2
latest version
56c21012
17 commits,
5 years ago
version 8
2fe47e38
15 commits,
5 years ago
version 7
4af79c7b
8 commits,
5 years ago
version 6
12fbdec2
7 commits,
5 years ago
version 5
e4d7a2b5
5 commits,
5 years ago
version 4
aa1eeeb1
5 commits,
5 years ago
version 3
7c9fea5a
4 commits,
5 years ago
version 2
6f3ff94c
3 commits,
5 years ago
version 1
d556434f
2 commits,
5 years ago
12 files
+
212
−
122
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
12
Search (e.g. *.vue) (Ctrl+P)
src/TNL/Config/ParameterContainer.h
+
14
−
1
Options
@@ -82,7 +82,7 @@ public:
}
/**
* \brief Checks
whether
the
p
arameter
\e name already exists in ParameterContainer
.
* \brief Checks
if
the
P
arameter
Container contains a parameter specified by its name
.
*
* \param name Name of the parameter.
*/
@@ -95,6 +95,19 @@ public:
return
false
;
}
/**
* \brief Checks whether the ParameterContainer contains all specified parameter names.
*
* \param name Name of the parameter.
*/
bool
checkParameters
(
std
::
initializer_list
<
String
>
names
)
const
{
for
(
auto
name
:
names
)
if
(
!
checkParameter
(
name
)
)
return
false
;
return
true
;
}
/**
* \brief Assigns new \e value to the parameter \e name.
*
Loading