ENH: simplify method names for reading argList options and arguments

- use succincter method names that more closely resemble dictionary
  and HashTable method names. This improves method name consistency
  between classes and also requires less typing effort:

    args.found(optName)        vs.  args.optionFound(optName)
    args.readIfPresent(..)     vs.  args.optionReadIfPresent(..)
    ...
    args.opt<scalar>(optName)  vs.  args.optionRead<scalar>(optName)
    args.read<scalar>(index)   vs.  args.argRead<scalar>(index)

- the older method names forms have been retained for code compatibility,
  but are now deprecated
This commit is contained in:
Mark Olesen
2018-01-08 15:35:18 +01:00
parent 2feb11dbeb
commit 345a2a42f1
168 changed files with 1161 additions and 1040 deletions

View File

@ -331,29 +331,29 @@ int main(int argc, char *argv[])
scalar xxx(-1);
if (args.optionFound("flag"))
if (args.found("flag"))
{
Info<<"-flag:" << args["flag"] << endl;
}
if (args.optionReadIfPresent<scalar>("float", xxx))
if (args.readIfPresent<scalar>("float", xxx))
{
Info<<"read float " << xxx << endl;
}
if (args.optionFound("reList"))
if (args.found("reList"))
{
reLst = args.optionReadList<wordRe>("reList");
reLst = args.readList<wordRe>("reList");
}
if (args.optionFound("wordList"))
if (args.found("wordList"))
{
wLst = args.optionReadList<word>("wordList");
wLst = args.readList<word>("wordList");
}
if (args.optionFound("stringList"))
if (args.found("stringList"))
{
sLst = args.optionReadList<string>("stringList");
sLst = args.readList<string>("stringList");
}
Info<< nl