mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: rationalize some string methods.
- silently deprecate 'startsWith', 'endsWith' methods
(added in 2016: 2b14360662), in favour of
'starts_with', 'ends_with' methods, corresponding to C++20 and
allowing us to cull then in a few years.
- handle single character versions of starts_with, ends_with.
- add single character version of removeEnd and silently deprecate
removeTrailing which did the same thing.
- drop the const versions of removeRepeated, removeTrailing.
Unused and with potential confusion.
STYLE: use shrink_to_fit(), erase()
This commit is contained in:
committed by
Andrew Heather
parent
ea214727a5
commit
7c1190f0b1
@ -678,7 +678,7 @@ void Foam::vtkPVFoam::Update
|
||||
// Suppress caching of Lagrangian since it normally always changes.
|
||||
cachedVtp_.filterKeys
|
||||
(
|
||||
[](const word& k){ return k.startsWith("lagrangian/"); },
|
||||
[](const word& k){ return k.starts_with("lagrangian/"); },
|
||||
true // prune
|
||||
);
|
||||
}
|
||||
|
||||
@ -179,7 +179,7 @@ void Foam::vtkPVFoam::convertMeshPatches()
|
||||
}
|
||||
}
|
||||
|
||||
if (longName.startsWith("group/"))
|
||||
if (longName.starts_with("group/"))
|
||||
{
|
||||
// Patch group. Collect patch faces.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user