A 1D array of objects of type <T>, where the size of the vector is known and used for subscript bounds checking, etc. More...
Public Types | |
typedef SubList< T > | subList |
Declare type of subList. More... | |
Public Types inherited from UList< T > | |
typedef T | value_type |
Type of values the UList contains. More... | |
typedef T & | reference |
Type that can be used for storing into. More... | |
typedef const T & | const_reference |
Type that can be used for storing into. More... | |
typedef label | difference_type |
The type that can represent the difference between any two. More... | |
typedef label | size_type |
The type that can represent the size of a UList. More... | |
typedef T * | iterator |
Random access iterator for traversing UList. More... | |
typedef const T * | const_iterator |
Random access iterator for traversing UList. More... | |
typedef std::reverse_iterator< iterator > | reverse_iterator |
Reverse iterator for reverse traversal of UList. More... | |
typedef std::reverse_iterator< const_iterator > | const_reverse_iterator |
Reverse iterator for reverse traversal of constant UList. More... | |
Public Member Functions | |
List () | |
Null constructor. More... | |
List (const label) | |
Construct with given size. More... | |
List (const label, const T &) | |
Construct with given size and value for all elements. More... | |
List (const label, const zero) | |
Construct with given size initialising all elements to zero. More... | |
List (const List< T > &) | |
Copy constructor. More... | |
template<class T2 > | |
List (const UList< T2 > &) | |
Copy constructor from list containing another type. More... | |
List (List< T > &&) | |
Move constructor. More... | |
List (List< T > &, bool reuse) | |
Construct as copy or reuse as specified. More... | |
List (const UList< T > &, const labelUList &mapAddressing) | |
Construct as subset. More... | |
template<class InputIterator > | |
List (InputIterator first, InputIterator last) | |
Construct given start and end iterators. More... | |
template<unsigned Size> | |
List (const FixedList< T, Size > &) | |
Construct as copy of FixedList<T, Size> More... | |
List (const PtrList< T > &) | |
Construct as copy of PtrList<T> More... | |
List (const SLList< T > &) | |
Construct as copy of SLList<T> More... | |
List (const UIndirectList< T > &) | |
Construct as copy of UIndirectList<T> More... | |
List (const BiIndirectList< T > &) | |
Construct as copy of BiIndirectList<T> More... | |
List (std::initializer_list< T >) | |
Construct from an initialiser list. More... | |
List (Istream &) | |
Construct from Istream. More... | |
autoPtr< List< T > > | clone () const |
Clone. More... | |
~List () | |
Destructor. More... | |
label | size () const |
Return the number of elements in the UList. More... | |
void | resize (const label) |
Alias for setSize(const label) More... | |
void | resize (const label, const T &) |
Alias for setSize(const label, const T&) More... | |
void | setSize (const label) |
Reset size of List. More... | |
void | setSize (const label, const T &) |
Reset size of List and value for new elements. More... | |
void | clear () |
Clear the list, i.e. set size to zero. More... | |
void | append (const T &) |
Append an element at the end of the list. More... | |
void | append (const UList< T > &) |
Append a List at the end of this list. More... | |
void | append (const UIndirectList< T > &) |
Append a UIndirectList at the end of this list. More... | |
void | transfer (List< T > &) |
Transfer the contents of the argument List into this list. More... | |
template<unsigned SizeInc, unsigned SizeMult, unsigned SizeDiv> | |
void | transfer (DynamicList< T, SizeInc, SizeMult, SizeDiv > &) |
Transfer the contents of the argument List into this list. More... | |
void | transfer (SortableList< T > &) |
Transfer the contents of the argument List into this list. More... | |
T & | newElmt (const label) |
Return subscript-checked element of UList. More... | |
void | shallowCopy (const UList< T > &)=delete |
Disallow implicit shallowCopy. More... | |
void | operator= (const UList< T > &) |
Assignment to UList operator. Takes linear time. More... | |
void | operator= (const List< T > &) |
Assignment operator. Takes linear time. More... | |
void | operator= (List< T > &&) |
Move assignment operator. More... | |
void | operator= (const SLList< T > &) |
Assignment to SLList operator. Takes linear time. More... | |
void | operator= (const UIndirectList< T > &) |
Assignment to UIndirectList operator. Takes linear time. More... | |
void | operator= (const BiIndirectList< T > &) |
Assignment to BiIndirectList operator. Takes linear time. More... | |
void | operator= (std::initializer_list< T >) |
Assignment to an initialiser list. More... | |
void | operator= (const T &) |
Assignment of all entries to the given value. More... | |
void | operator= (const zero) |
Assignment of all entries to zero. More... | |
Public Member Functions inherited from UList< T > | |
UList () | |
Null constructor. More... | |
UList (T *__restrict__ v, label size) | |
Construct from components. More... | |
UList (const UList< T > &)=default | |
Copy construct. More... | |
label | fcIndex (const label i) const |
Return the forward circular index, i.e. the next index. More... | |
label | rcIndex (const label i) const |
Return the reverse circular index, i.e. the previous index. More... | |
std::streamsize | byteSize () const |
Return the binary size in number of characters of the UList. More... | |
const T * | cdata () const |
Return a const pointer to the first data element,. More... | |
T * | data () |
Return a pointer to the first data element,. More... | |
T & | first () |
Return the first element of the list. More... | |
const T & | first () const |
Return first element of the list. More... | |
T & | last () |
Return the last element of the list. More... | |
const T & | last () const |
Return the last element of the list. More... | |
void | checkStart (const label start) const |
Check start is within valid range (0 ... size-1) More... | |
void | checkSize (const label size) const |
Check size is within valid range (0 ... size) More... | |
void | checkIndex (const label i) const |
Check index i is within valid range (0 ... size-1) More... | |
void | shallowCopy (const UList< T > &) |
Copy the pointer held by the given UList. More... | |
void | deepCopy (const UList< T > &) |
Copy elements of the given UList. More... | |
T & | operator[] (const label) |
Return element of UList. More... | |
const T & | operator[] (const label) const |
Return element of constant UList. More... | |
operator const Foam::List< T > & () const | |
Allow cast to a const List<T>&. More... | |
void | operator= (const T &) |
Assignment of all entries to the given value. More... | |
void | operator= (const zero) |
Assignment of all entries to zero. More... | |
iterator | begin () |
Return an iterator to begin traversing the UList. More... | |
iterator | end () |
Return an iterator to end traversing the UList. More... | |
const_iterator | cbegin () const |
Return const_iterator to begin traversing the constant UList. More... | |
const_iterator | cend () const |
Return const_iterator to end traversing the constant UList. More... | |
const_iterator | begin () const |
Return const_iterator to begin traversing the constant UList. More... | |
const_iterator | end () const |
Return const_iterator to end traversing the constant UList. More... | |
reverse_iterator | rbegin () |
Return reverse_iterator to begin reverse traversing the UList. More... | |
reverse_iterator | rend () |
Return reverse_iterator to end reverse traversing the UList. More... | |
const_reverse_iterator | crbegin () const |
Return const_reverse_iterator to begin reverse traversing the UList. More... | |
const_reverse_iterator | crend () const |
Return const_reverse_iterator to end reverse traversing the UList. More... | |
const_reverse_iterator | rbegin () const |
Return const_reverse_iterator to begin reverse traversing the UList. More... | |
const_reverse_iterator | rend () const |
Return const_reverse_iterator to end reverse traversing the UList. More... | |
label | size () const |
Return the number of elements in the UList. More... | |
label | max_size () const |
Return size of the largest possible UList. More... | |
bool | empty () const |
Return true if the UList is empty (ie, size() is zero) More... | |
void | swap (UList< T > &) |
Swap two ULists of the same type in constant time. More... | |
bool | operator== (const UList< T > &) const |
Equality operation on ULists of the same type. More... | |
bool | operator!= (const UList< T > &) const |
The opposite of the equality operation. Takes linear time. More... | |
bool | operator< (const UList< T > &) const |
Compare two ULists lexicographically. Takes linear time. More... | |
bool | operator> (const UList< T > &) const |
Compare two ULists lexicographically. Takes linear time. More... | |
bool | operator<= (const UList< T > &) const |
Return true if !(a > b). Takes linear time. More... | |
bool | operator>= (const UList< T > &) const |
Return true if !(a < b). Takes linear time. More... | |
const bool & | operator[] (const label i) const |
Static Public Member Functions | |
static const List< T > & | null () |
Return a null List. More... | |
Static Public Member Functions inherited from UList< T > | |
static const UList< T > & | null () |
Return a null UList. More... | |
Protected Member Functions | |
void | size (const label) |
Override size to be inconsistent with allocated storage. More... | |
Friends | |
Istream & | operator>> (Istream &, List< T > &) |
Read List from Istream, discarding contents of existing List. More... | |
A 1D array of objects of type <T>, where the size of the vector is known and used for subscript bounds checking, etc.
Storage is allocated on free-store during construction.
Construct with given size.
Definition at line 39 of file List.C.
References Foam::abort(), Foam::FatalError, and FatalErrorInFunction.
Construct with given size and value for all elements.
Definition at line 55 of file List.C.
References Foam::abort(), Foam::FatalError, FatalErrorInFunction, List_ACCESS, List_ELEM, List_END_FOR_ALL, List_FOR_ALL, and Foam::T().
Construct with given size initialising all elements to zero.
Definition at line 79 of file List.C.
References Foam::abort(), Foam::FatalError, FatalErrorInFunction, List_ACCESS, List_ELEM, List_END_FOR_ALL, List_FOR_ALL, Foam::T(), and Foam::Zero.
Copy constructor.
Definition at line 103 of file List.C.
References UList< T >::byteSize(), List_ACCESS, List_CONST_ACCESS, List_ELEM, List_END_FOR_ALL, List_FOR_ALL, and Foam::T().
List | ( | const UList< T > & | a, |
const labelUList< T > & | mapAddressing | ||
) |
Construct as subset.
Definition at line 189 of file List.C.
References forAll, and UList< T >::operator[]().
List | ( | InputIterator | first, |
InputIterator | last | ||
) |
|
explicit |
|
explicit |
|
inlineprotected |
Override size to be inconsistent with allocated storage.
Use with care
Definition at line 164 of file ListI.H.
References n.
Referenced by extendedEdgeMesh::add(), preserveBafflesConstraint::add(), polyMeshAdder::add(), cellTable::addCellZones(), surfaceZonesInfo::addCellZonesToMesh(), addPatchCellLayer::addedCells(), mapPatchChange::addedPatches(), surfaceZonesInfo::addFaceZonesToMesh(), edgeSurface::addIntersectionEdges(), snappyLayerDriver::addLayers(), polyMesh::addPatches(), faceZoneSet::addSet(), fvMatrix< Type >::addToInternalField(), pointPatchField< Type >::addToInternalField(), vtkPVFoam::addToSelection(), regIOobject::addWatch(), fileMonitorWatcher::addWatch(), polyMesh::addZones(), MeshedSurface< Face >::addZones(), manualGAMGProcAgglomeration::agglomerate(), GAMGInterface::agglomerateCoeffs(), GAMGAgglomeration::agglomerateLduAddressing(), extendedEdgeMesh::allNearestFeaturePoints(), UPstream::allocateCommunicator(), alphaFixedPressureFvPatchScalarField::alphaFixedPressureFvPatchScalarField(), MPLICface::alphaPhiU(), lduMatrix::Amul(), blockEdge::appendEndPoints(), singleProcessorFaceSetsConstraint::apply(), setToCellZone::applyToSet(), faceZoneToFaceZone::applyToSet(), setAndNormalToFaceZone::applyToSet(), setsToFaceZone::applyToSet(), setToFaceZone::applyToSet(), setToPointZone::applyToSet(), face::area(), face::areaAndCentre(), face::areaAndCentreStabilised(), face::areaInContact(), argList::argList(), LduMatrix< Type, DType, LUType >::asymmetric(), lduMatrix::asymmetric(), Foam::average(), snappySnapDriver::avgCellCentres(), meshRefinement::baffleAndSplitMesh(), binaryTree::balance(), meshRefinement::balance(), meshRefinement::balanceAndRefine(), Foam::bandCompression(), binaryTree::binaryTreeSearch(), bladeModel::bladeModel(), blockDescriptor::blockDescriptor(), booleanSurface::booleanSurface(), searchableExtrudedCircle::boundingSpheres(), searchableSurfaceCollection::boundingSpheres(), searchableSurfacesQueries::bounds(), pairPotentialList::buildPotentials(), tetherPotentialList::buildPotentials(), ReactingMultiphaseParcel< ParcelType >::calc(), ReactingParcel< ParcelType >::calc(), PatchTools::calcBounds(), faceZone::calcCellLayers(), primitiveMesh::calcCells(), faceCoupleInfo::calcFacePointAverages(), forcesBase::calcForcesMoments(), faceLimitedGrad< Type >::calcGrad(), triSurfaceSearch::calcInside(), triSurfaceTools::calcInterpolationWeights(), TDILUPreconditioner< Type, DType, LUType >::calcInvD(), cellMatcher::calcLocalFaces(), Zone< ZoneType, ZonesType >::calcLookupMap(), snappySnapDriver::calcNearestSurface(), polyLine::calcParam(), primitiveMesh::calcPointOrder(), createShellMesh::calcPointRegions(), DICPreconditioner::calcReciprocalD(), DILUPreconditioner::calcReciprocalD(), points::calcSamples(), lineFace::calcSamples(), addPatchCellLayer::calcSidePatch(), snappySnapDriver::calcSnapDistance(), correlationFunction< Type >::calculateCorrelationFunction(), meshRefinement::calculateEdgeWeights(), GAMGAgglomeration::calculateRegionMaster(), tetOverlapVolume::cellCellOverlapMinDecomp(), tetOverlapVolume::cellCellOverlapVolumeMinDecomp(), tetOverlapVolume::cellVolumeMinDecomp(), repatcher::changeAnchorPoint(), faceZone::checkAddressing(), Foam::meshCheck::checkCellsZipUp(), Foam::meshCheck::checkClosedBoundary(), Foam::meshCheck::checkCommonOrder(), Foam::meshCheck::checkCoupledPoints(), meshRefinement::checkData(), Foam::meshCheck::checkDuplicateFaces(), triSurface::checkEdges(), MeshedSurface< Face >::checkFaces(), Foam::meshCheck::checkFaceVertices(), Cloud< ParticleType >::checkFieldIOobject(), searchableSurfaces::checkIntersection(), hexRef8::checkMesh(), Foam::checkNonManifoldEdge(), PatchTools::checkOrientation(), polyBoundaryMesh::checkParallelSync(), ZoneList< ZoneType, ZonesType, MeshType >::checkParallelSync(), Foam::meshCheck::checkPointNearness(), GAMGAgglomeration::checkRestriction(), ReactingCloud< CloudType >::checkSuppliedComposition(), timeVaryingMappedFixedValuePointPatchField< Type >::checkTable(), PrimitivePatch< FaceList, PointField >::checkTopology(), Foam::meshCheck::checkTopology(), triSurface::checkTriangles(), Foam::meshCheck::checkUpperTriangular(), MeshedSurface< Face >::checkZones(), surfMesh::checkZones(), ensightPartFaces::classify(), extendedEdgeMesh::classifyEdge(), extendedEdgeMesh::classifyFeaturePoint(), refinementHistory::clone(), CloudFunctionObjectList< CloudType >::CloudFunctionObjectList(), Foam::cmptAv(), Foam::cmptMag(), Foam::cmptMax(), Foam::cmptMin(), cellShape::collapsedFaces(), triSurfaceTools::collapseEdges(), collatedFileOperation::collatedFileOperation(), meshRefinement::collectAndPrint(), extendedFaceToCellStencil::collectData(), extendedCellToFaceStencil::collectData(), CollisionRecordList< PairType, WallType >::CollisionRecordList(), commSchedule::commSchedule(), UPstream::commsStruct::commsStruct(), refinementHistory::compact(), distributionMapBase::compact(), face::compare(), volFieldValue::compareScalars(), componentDisplacementMotionSolver::componentDisplacementMotionSolver(), processorLduInterface::compressedReceive(), processorLduInterface::compressedSend(), edgeCollapser::consistentCollapse(), hexRef8::consistentSlowRefinement(), hexRef8::consistentSlowRefinement2(), molecule::constantProperties::constantProperties(), limitTemperature::constrain(), Foam::patchToPatchTools::constructDistributionMap(), vtkPVFoam::convertVolInternalField(), particle::correctAfterProcessorTransfer(), Foam::correctContactAngle(), multicomponentThermo::implementation::correctMassFractions(), ReactingParcel< ParcelType >::correctSurfaceValues(), constant::cosTheta(), removePoints::countPointUsage(), cyclicPolyPatch::coupledEdges(), cyclicPolyPatch::coupledPoints(), coupledTemperatureFvPatchScalarField::coupledTemperatureFvPatchScalarField(), Foam::cp(), meshRefinement::createBaffles(), Keyed< T >::createList(), createShellMesh::createShellMesh(), meshRefinement::createZoneBaffles(), triSurface::curvature(), curvatureSeparation::curvatureSeparation(), geomCellLooper::cut(), hexCellLooper::cut(), Foam::meshTools::cutDirToEdge(), cutPolyIsoSurface::cutPolyIsoSurface(), Foam::cwd(), cyclicGAMGInterface::cyclicGAMGInterface(), cyclicTransform::cyclicTransform(), DAC< ThermoType >::DAC(), fvMatrix< Type >::DD(), simple::decompose(), decompositionMethod::decompose(), parMetis::decompose(), structured::decompose(), zoltan::decompose(), multiLevel::decompose(), triSurfaceTools::delaunay2D(), cellZoneSet::deleteSet(), faceZoneSet::deleteSet(), pointZoneSet::deleteSet(), LduMatrix< Type, DType, LUType >::diagonal(), lduMatrix::diagonal(), diagonalPreconditioner::diagonalPreconditioner(), DiagonalPreconditioner< Type, DType, LUType >::DiagonalPreconditioner(), DimensionedField< Type, GeoMesh >::DimensionedField(), distributedTriSurfaceMesh::distribute(), refinementHistory::distribute(), distributionMapBase::distribute(), distributionMap::distribute(), Foam::patchToPatchTools::distributeAddressing(), cellsToCells::distributeMesh(), patchToPatch::distributePatch(), distributionMap::distributionMap(), distributionMapBase::distributionMapBase(), regionSizeDistribution::divide(), snappyLayerDriver::doLayers(), meshRefinement::doRemovePoints(), meshRefinement::doRestorePoints(), snappySnapDriver::doSnap(), meshRefinement::dumpIntersections(), dynamicCodeContext::dynamicCodeContext(), dynamicMeshPointInterpolator::dynamicMeshPointInterpolator(), extendedEdgeMesh::edgeBaffles(), primitiveMesh::edgeFaces(), extendedEdgeMesh::edgeNormals(), PatchTools::edgeOwner(), face::edges(), cellModel::edges(), triSurfaceTools::edgeSide(), edgeSurface::edgeSurface(), directionInfo::edgeToFaceIndex(), triSurfaceMesh::edgeTree(), waveSuperposition::elevation(), globalIndexAndTransform::encodeTransformIndex(), ListHashTable< T, Key, Hash >::erase(), BlendedInterfacialModel< ModelType >::evaluate(), distributionMapBase::exchangeAddressing(), Pstream::exchangeSizes(), extendedEdgeMesh::extendedEdgeMesh(), extendedFeatureEdgeMesh::extendedFeatureEdgeMesh(), extendedUpwindCellToFaceStencil::extendedUpwindCellToFaceStencil(), externalTemperatureFvPatchScalarField::externalTemperatureFvPatchScalarField(), triSurfaceMesh::extractCloseness(), triSurfaceMesh::extractPointCloseness(), FaceCellWave< Type, TrackingData >::FaceCellWave(), faceCoupleInfo::faceCoupleInfo(), primitiveMesh::faceEdges(), fvMeshSubset::faceFlipMap(), LduMatrix< Type, DType, LUType >::faceH(), lduMatrix::faceH(), hexRef8::faceLevel(), FacePatchIntersection< SrcPatchType, TgtPatchType >::FacePatchIntersection(), FacePostProcessing< CloudType >::FacePostProcessing(), cellModel::faces(), hexMatcher::faceSizeMatch(), prismMatcher::faceSizeMatch(), pyrMatcher::faceSizeMatch(), tetMatcher::faceSizeMatch(), tetWedgeMatcher::faceSizeMatch(), wedgeMatcher::faceSizeMatch(), polyMeshTetDecomposition::faceTetIndices(), OppositeFaceCellWave< Type, TrackingData >::faceToCell(), PrimitivePatchInterpolation< Patch >::faceToEdgeInterpolate(), tetIndices::faceTriIs(), FDICPreconditioner::FDICPreconditioner(), FDICSmoother::FDICSmoother(), featureEdgeMesh::featureEdgeMesh(), extendedEdgeMesh::featurePointNormals(), Foam::fftRenumberRecurse(), fieldsExpression::fieldsExpression(), cellClassification::fillRegionEdges(), refinementSurfaces::findAllHigherIntersections(), searchableSurfacesQueries::findAllIntersections(), searchableSurfacesQueries::findAnyIntersection(), Time::findClosestTime(), localPointRegion::findDuplicateFacePairs(), patchProbes::findElements(), Foam::findEtcFile(), polyMeshTetDecomposition::findFaceBasePts(), refinementSurfaces::findHigherIntersection(), refinementSurfaces::findInside(), fileOperation::findInstance(), masterUncollatedFileOperation::findInstance(), searchableBox::findLine(), searchableCylinder::findLine(), searchableDisk::findLine(), searchablePlane::findLine(), searchablePlate::findLine(), searchableSphere::findLine(), searchableSurfaceCollection::findLine(), searchableSurfaceWithGaps::findLine(), triSurfaceSearch::findLine(), searchableBox::findLineAll(), searchableCylinder::findLineAll(), searchableDisk::findLineAll(), searchablePlane::findLineAll(), searchablePlate::findLineAll(), searchableSphere::findLineAll(), searchableSurfaceCollection::findLineAll(), searchableSurfaceWithGaps::findLineAll(), distributedTriSurfaceMesh::findLineAll(), triSurfaceSearch::findLineAll(), searchableBox::findLineAny(), searchableCylinder::findLineAny(), searchableSphere::findLineAny(), triSurfaceSearch::findLineAny(), searchableBox::findNearest(), searchableCylinder::findNearest(), searchableDisk::findNearest(), searchableExtrudedCircle::findNearest(), searchablePlane::findNearest(), searchablePlate::findNearest(), searchableSphere::findNearest(), distributedTriSurfaceMesh::findNearest(), triSurfaceRegionSearch::findNearest(), triSurfaceSearch::findNearest(), searchableSurfacesQueries::findNearest(), primitiveMesh::findNearestCell(), refinementFeatures::findNearestEdge(), refinementSurfaces::findNearestIntersection(), searchableSurfacesQueries::findNearestIntersection(), refinementFeatures::findNearestPoint(), refinementSurfaces::findNearestRegion(), refinementFeatures::findNearestRegionEdge(), searchableExtrudedCircle::findParametricNearest(), polyMeshTetDecomposition::findTet(), pointToPointPlanarInterpolation::findTime(), Foam::first(), fluxLimitedLangmuirHinshelwoodReactionRate::fluxLimitedLangmuirHinshelwoodReactionRate(), rigidBodyModel::forwardDynamics(), FreeStream< CloudType >::FreeStream(), faceCorrectedSnGrad< Type >::fullGradCorrection(), FvFaceCellWave< Type, TrackingData >::FvFaceCellWave(), GAMGSolver::GAMGSolver(), coordSet::gather(), lduPrimitiveMesh::gather(), globalIndex::gather(), PatchTools::gatherAndMerge(), GAMGAgglomeration::gatherList(), Pstream::gatherList(), Foam::gAverage(), Foam::triIntersect::generateGeometry(), get_vertex_list(), Foam::meshCheck::getAffectedCells(), searchableSurfaceCollection::getField(), triSurfaceMesh::getField(), distributedTriSurfaceMesh::getField(), surfaceFieldValue::getFieldValues(), meshRefinement::getMasterEdges(), meshRefinement::getMasterPoints(), combineFaces::getMergeSets(), repatchMesh::getNearest(), searchableBox::getNormal(), searchableCylinder::getNormal(), searchableDisk::getNormal(), searchableExtrudedCircle::getNormal(), searchablePlane::getNormal(), searchablePlate::getNormal(), searchableSphere::getNormal(), searchableSurfaceCollection::getNormal(), triSurfaceMesh::getNormal(), distributedTriSurfaceMesh::getNormal(), correctorConvergenceControl::getNTypeSolves(), combineFaces::getOutsideFace(), searchableBox::getRegion(), searchableCylinder::getRegion(), searchableDisk::getRegion(), searchableExtrudedCircle::getRegion(), searchablePlane::getRegion(), searchablePlate::getRegion(), searchableSphere::getRegion(), searchableSurfaceCollection::getRegion(), triSurfaceMesh::getRegion(), distributedTriSurfaceMesh::getRegion(), hexRef8::getSplitPoints(), removePoints::getUnrefimentSet(), cellLooper::getVertEdgesNonFace(), triSurfaceTools::getVertexTriangles(), searchableBox::getVolumeType(), searchableCylinder::getVolumeType(), searchableSphere::getVolumeType(), triSurfaceMesh::getVolumeType(), addPatchCellLayer::globalEdgeFaces(), triSurfaceTools::greenRefine(), chemPointISAT::grow(), lduMatrix::H(), fvMatrix< Type >::H1(), FvFaceCellWave< Type, TrackingData >::handleProcPatches(), FaceCellWave< Type, TrackingData >::handleProcPatches(), waveSuperposition::height(), Henry::Henry(), hexRef8::hexRef8(), particle::hitCyclicPatch(), phaseInterface::identifyPhases(), Foam::ImComplexField(), Distribution< Type >::index(), indexedOctree< Type >::indexedOctree(), FreeStream< CloudType >::inflow(), LduMatrix< Type, DType, LUType >::initMatrixInterfaces(), lduMatrix::initMatrixInterfaces(), InjectionModelList< CloudType >::InjectionModelList(), Foam::stringOps::inplaceExpandCodeString(), ZoneList< ZoneType, ZonesType, MeshType >::insert(), Foam::insertUniformTypeField(), correlationFunction< Type >::integral(), FieldFunction1< Type, Function1Type >::integral(), waveSpectrum::integralFS(), waveSpectrum::integralS(), integratedNonUniformTable::integratedNonUniformTable(), linearInterpolationWeights::integrationWeights(), stepInterpolationWeights::integrationWeights(), fieldInterpolation< Type, InterpolationType >::interpolate(), pointToPointPlanarInterpolation::interpolate(), interpolationCellPointFace< Type >::interpolate(), singleCellFvMesh::interpolate(), fvMeshSubset::interpolate(), patchInternalField::interpolateField(), Foam::interpolatePointToCell(), bladeModel::interpolateWeights(), lookupProfile::interpolateWeights(), interpolation< Foam::Vector >::interpolation(), intersectedSurface::intersectedSurface(), patchToPatch::intersectPatches(), patchToPatch::intersectPatchQueue(), gradingDescriptors::inv(), Foam::inv(), MomentumTransferPhaseSystem< BasePhaseSystem >::invADVfs(), MomentumTransferPhaseSystem< BasePhaseSystem >::invADVs(), cylindrical::invTransform(), hexMatcher::isA(), prismMatcher::isA(), pyrMatcher::isA(), tetMatcher::isA(), tetWedgeMatcher::isA(), wedgeMatcher::isA(), ensightPart::isFieldDefined(), liquidMixtureProperties::kappa(), cell::labels(), noiseFFT::Ldelta(), lduPrimitiveMesh::lduPrimitiveMesh(), Foam::MULES::limiter(), Foam::MULES::limiterCorr(), lineDivide::lineDivide(), LiquidEvaporation< CloudType >::LiquidEvaporation(), LiquidEvaporationBoil< CloudType >::LiquidEvaporationBoil(), liquidMixtureProperties::liquidMixtureProperties(), Pstream::listCombineGather(), PrimitiveOldTimePatch< FaceList, PointField >::localPoints0(), Foam::patchToPatchTools::localToRemote(), particle::locate(), basicThermo::lookupCstrIter(), fileOperation::lookupProcessorsPath(), lookupProfile::lookupProfile(), cellCuts::loopPoints(), cellModel::mag(), Foam::mag(), Foam::magSqr(), Field< Type >::map(), fvMesh::mapFields(), Foam::MapLagrangianFields(), edgeCollapser::markMergeEdges(), triSurface::markZone(), PatchTools::markZone(), triSurface::markZones(), PatchTools::markZones(), momentOfInertia::massPropertiesShell(), momentOfInertia::massPropertiesSolid(), masterUncollatedFileOperation::masterOp(), degenerateMatcher::match(), Foam::matchPoints(), Foam::max(), Foam::maxMagSqr(), noiseFFT::meanPf(), Distribution< Type >::median(), edgeIntersections::merge(), cellToCellStencil::merge(), cellToFaceStencil::merge(), Foam::meshCheck::mergeAndWrite(), meshRefinement::mergeBaffles(), meshRefinement::mergeEdgesUndo(), meshRefinement::mergePatchFacesUndo(), triSurfaceTools::mergePoints(), globalMeshData::mergePoints(), fileOperation::mergeTimes(), snappySnapDriver::mergeZoneBaffles(), cellShape::meshEdges(), PrimitivePatch< FaceList, PointField >::meshEdges(), cellShape::meshFaces(), momentOfInertia::meshInertia(), meshTriangulation::meshTriangulation(), Foam::min(), extendedEdgeMesh::minDisconnectedDist(), Foam::minDist(), edgeIntersections::minEdgeLength(), Foam::minMagSqr(), mixtureFraction::mixtureFraction(), primitiveMesh::movePoints(), multiValveEngine::movingObject::movingPointZones(), multiDirRefinement::multiDirRefinement(), multiNormal::multiNormal(), multiSolidBodyMotionSolver::multiSolidBodyMotionSolver(), phaseInterface::nameToSeparators(), polyBoundaryMesh::nbrEdges(), fvSource::nCells(), polyCellSet::nCells(), surfaceFeatures::nearestEdges(), surfaceFeatures::nearestFeatEdge(), extendedEdgeMesh::nearestFeatureEdge(), face::nearestPointClassify(), surfaceFeatures::nearestSamples(), surfaceFeatures::nearestSurfEdge(), cellModel::nEdges(), primitiveMesh::nEdges(), PrimitivePatch< FaceList, PointField >::nEdges(), sootModel::New(), combustionModel::New(), phaseInterface::New(), cellModel::nFaces(), vtkMesh::nFieldCells(), vtkMesh::nFieldPoints(), potential::nIds(), noiseFFT::noiseFFT(), cellCuts::nonAnchorPoints(), nonBlockingGaussSeidelSmoother::nonBlockingGaussSeidelSmoother(), surfaceLocation::normal(), PrimitivePatch< FaceList, PointField >::nPoints(), surfMesh::nPoints(), UPstream::nProcs(), refinementSurfaces::nRegions(), decompositionMethod::nWeights(), writeObjectsBase::objectNames(), dlLibraryTable::open(), projectVertex::operator point(), Foam::operator&(), inversePointDistanceDiffusivity::operator()(), transformPositionList::operator()(), ListOp< BinaryOp >::operator()(), MapInternalField< Type, MeshMapper, surfaceMesh >::operator()(), LduMatrix< Type, DType, LUType >::operator*=(), lduMatrix::operator*=(), Foam::operator/(), lduMatrix::operator/=(), Foam::operator<<(), cellTable::operator=(), Foam::operator==(), surfacePatch::operator==(), Foam::operator>>(), HashList< Type, Key, Hash >::operator[](), cell::opposingFace(), cell::opposingFaceLabel(), OppositeFaceCellWave< Type, TrackingData >::OppositeFaceCellWave(), coupledPolyPatch::order(), triSurfaceTools::otherFace(), Foam::outer(), distributedTriSurfaceMesh::overlappingSurface(), nonConformalBoundary::ownerOrigBoundaryEdgeMeshEdge(), nonConformalBoundary::ownerOrigBoundaryMeshEdges(), parcelCloudList::parcelCloudList(), parMetis::parMetis(), argList::parse(), ParticleCollector< CloudType >::ParticleCollector(), ParticleForceList< CloudType >::ParticleForceList(), PatchEdgeFaceWave< PrimitivePatchType, Type, TrackingData >::PatchEdgeFaceWave(), pointPatchField< Type >::patchInternalField(), PatchPostProcessing< CloudType >::PatchPostProcessing(), patchZones::patchZones(), noiseFFT::Pdelta(), tabulatedDensity::PDF(), SprayCloud< CloudType >::penetration(), primitiveMesh::pointCells(), polyMesh::pointInCell(), pointMVCWeight::pointMVCWeight(), PatchTools::pointNormals(), primitiveMesh::pointPoints(), cell::points(), points0MotionSolver::points0MotionSolver(), PrimitivePatchInterpolation< Patch >::pointToFaceInterpolate(), polyMesh::polyMesh(), Foam::polyMeshZipUpCells(), Polynomial< Type >::Polynomial(), polyTopoChange::polyTopoChange(), star::populate(), blockEdge::position(), projectCurveEdge::position(), projectEdge::position(), Foam::pow(), powerLawLopesdaCostaZone::powerLawLopesdaCostaZone(), DiagonalPreconditioner< Type, DType, LUType >::precondition(), TDILUPreconditioner< Type, DType, LUType >::precondition(), diagonalPreconditioner::precondition(), DICPreconditioner::precondition(), DILUPreconditioner::precondition(), FDICPreconditioner::precondition(), GAMGPreconditioner::precondition(), noPreconditioner::precondition(), TDILUPreconditioner< Type, DType, LUType >::preconditionT(), DILUPreconditioner::preconditionT(), pressureFvPatchScalarField::pressureFvPatchScalarField(), Foam::primitivePatchGetZones(), dynamicIndexedOctree< Type >::print(), indexedOctree< Type >::print(), vtkUnstructuredReader::printFieldStats(), distributionMap::printLayout(), fvMeshDistribute::printMeshInfo(), Foam::meshCheck::printMeshStats(), GAMGProcAgglomeration::printStats(), Foam::printTable(), GAMGAgglomeration::procAgglomerateRestrictAddressing(), processorGAMGInterface::processorGAMGInterface(), collatedFileOperation::processorsDir(), processorTopology::processorTopology(), particle::procTetPt(), profileModelList::profileModelList(), projectFace::project(), projectCurveEdge::projectCurveEdge(), projectEdge::projectEdge(), PrimitivePatch< FaceList, PointField >::projectFaceCentres(), PrimitivePatch< FaceList, PointField >::projectPoints(), projectVertex::projectVertex(), specieCoeffs::reactionStr(), cloudSolution::read(), regIOobject::read(), MaxwellStefan< BasicThermophysicalTransportModel >::read(), timeControl::read(), writeObjectsBase::read(), multicomponentMixture< ThermoType >::read(), NASedgeFormat::read(), OBJedgeFormat::read(), STARCDedgeFormat::read(), VTKedgeFormat::read(), MeshedSurface< face >::read(), NASsurfaceFormat< Face >::read(), OBJsurfaceFormat< Face >::read(), STARCDsurfaceFormat< Face >::read(), STLsurfaceFormat< Face >::read(), TRIsurfaceFormat< Face >::read(), VTKsurfaceFormat< Face >::read(), repatchMesh::read(), STARCD::readBoundary(), STARCD::readCells(), Foam::readConfigFile(), ReactingMultiphaseParcel< ParcelType >::readFields(), ReactingParcel< ParcelType >::readFields(), decomposedBlockData::readMasterHeader(), repatchMesh::readTriSurface(), polyMesh::readUpdate(), surfMesh::readUpdate(), ensightParts::recalculate(), distributionMapBase::receive(), InteractionLists< ParticleType >::receiveReferredData(), Foam::ReComplexField(), triSurfaceTools::redGreenRefine(), DAC< ThermoType >::reduceMechanism(), DRGEP< ThermoType >::reduceMechanism(), PFA< ThermoType >::reduceMechanism(), referredWallFace::referredWallFace(), refinementHistory::refinementHistory(), refiner::refiner(), searchableSurfaceCollection::regions(), edgeMesh::regions(), fvMatrix< Type >::relax(), edgeIntersections::removeDegenerates(), dynamicIndexedOctree< Type >::removeIndex(), undoableMeshCutter::removeSplitFaces(), springRenumber::renumber(), SloanRenumber::renumber(), randomRenumber::renumber(), renumberMethod::renumber(), manualRenumber::renumber(), structuredRenumber::renumber(), Foam::repeat(), patchIntersection::report(), polyMesh::resetPrimitives(), lduMatrix::residual(), GAMGAgglomeration::restrictFaceField(), pairPatchAgglomeration::restrictField(), GAMGAgglomeration::restrictField(), face::reverseFace(), noiseFFT::RMSmeanPf(), face::sameVertices(), nearWallFields::sampleBoundaryField(), patch::sampleField(), patchInternalField::sampleField(), triSurfaceMesh::sampleField(), sampledSets::sampleLocalType(), sampledSurfaces::sampleLocalType(), mappedInternalPatchBase::samplePoints(), sampledSurfaces::sampleType(), waveSuperposition::scale(), globalIndex::scatter(), Pstream::scatterList(), distributionMapBase::schedule(), searchableExtrudedCircle::searchableExtrudedCircle(), searchableSurfaces::searchableSurfaces(), Foam::second(), timeSelector::select(), Zone< ZoneType, ZonesType >::select(), timeSelector::selected(), scalarRanges::selected(), surfaceFeatures::selectFeatureEdges(), Foam::selectManifoldEdges(), distributionMapBase::send(), InteractionLists< ParticleType >::sendReferredData(), phaseInterface::separatorsToTypeName(), Foam::setBlockFaceCorrespondence(), fvMeshSubset::setCellSubset(), Time::setControls(), repatchMesh::setFeatureEdges(), pointPatchField< Type >::setInternalField(), fvMeshSubset::setLargeCellSubset(), refinementSurfaces::setMinLevelFields(), patchInjectionBase::setPositionAndCell(), removePoints::setRefinement(), meshCutter::setRefinement(), addPatchCellLayer::setRefinement(), perfectInterface::setRefinement(), hexRef8::setRefinement(), removeCells::setRefinement(), combineFaces::setRefinement(), edgeCollapser::setRefinement(), refinementIterator::setRefinement(), duplicatePoints::setRefinement(), createShellMesh::setRefinement(), fieldsExpression::setResultName(), sampledSet::setSamples(), masterUncollatedFileOperation::setTime(), removePoints::setUnrefinement(), combineFaces::setUnrefinement(), hexRef8::setUnrefinement(), UnsortedMeshedSurface< Face >::setZones(), treeDataEdge::shapePoints(), treeDataFace::shapePoints(), treeDataCell::shapePoints(), globalMeshData::sharedPoints(), liquidMixtureProperties::sigma(), searchableSurfacesQueries::signedDistance(), treeDataEdge::size(), treeDataFace::size(), treeDataPoint::size(), dynamicTreeDataPoint::size(), treeDataCell::size(), GAMGInterface::size(), procLduMatrix::size(), facePointPatch::size(), coordSet::size(), liquidMixtureProperties::size(), solidMixtureProperties::size(), triSurfaceGeoMesh::size(), triSurfacePointGeoMesh::size(), UCompactListList< T >::sizes(), TGaussSeidelSmoother< Type, DType, LUType >::smooth(), nonBlockingGaussSeidelSmoother::smooth(), GaussSeidelSmoother::smooth(), symGaussSeidelSmoother::smooth(), DICSmoother::smooth(), DILUSmoother::smooth(), FDICSmoother::smooth(), Foam::fvc::smooth(), mixedFixedValueSlipFvPatchField< Type >::snGradTransformDiag(), basicSymmetryFvPatchField< Type >::snGradTransformDiag(), fixedNormalSlipFvPatchField< Type >::snGradTransformDiag(), partialSlipFvPatchField< Type >::snGradTransformDiag(), solidMixtureProperties::solidMixtureProperties(), rigidBodyMeshMotion::solve(), chemistryModel< ThermoType >::solve(), PBiCCCG< Type, DType, LUType >::solve(), PBiCICG< Type, DType, LUType >::solve(), PCICG< Type, DType, LUType >::solve(), SmoothSolver< Type, DType, LUType >::solve(), GAMGSolver::solve(), PBiCG::solve(), PBiCGStab::solve(), PCG::solve(), smoothSolver::solve(), ParSortableList< Type >::sort(), PatchTools::sortedEdgeFaces(), PatchTools::sortedPointEdges(), UnsortedMeshedSurface< Face >::sortedZones(), extendedEdgeMesh::sortPointsAndEdges(), fileOperation::sortTimes(), SlicedGeometricField< Type, PatchField, SlicedPatchField, GeoMesh >::splice(), splineInterpolationWeights::splineInterpolationWeights(), meshRefinement::splitFaces(), meshRefinement::splitMesh(), meshRefinement::splitMeshRegions(), fileOperation::splitProcessorPath(), Foam::fvc::spread(), Foam::sqr(), multiValveEngine::movingObject::staticPointZones(), MeshedSurface< Face >::stitchFaces(), hexRef8::storeData(), subCycleFields< GeometricField >::subCycleFields(), hexRef8::subset(), refinementHistory::subset(), cellZoneSet::subset(), faceZoneSet::subset(), pointZoneSet::subset(), PatchTools::subsetMap(), triSurface::subsetMesh(), MeshedSurface< Face >::subsetMesh(), UnsortedMeshedSurface< Face >::subsetMesh(), triSurface::subsetMeshMap(), Foam::ListListOps::subSizes(), fvMatrix< Type >::subtractFromInternalField(), Foam::sum(), Foam::sumCmptMag(), Foam::sumMag(), Foam::sumSqr(), surfaceFeatures::surfaceFeatures(), surfaceIntersection::surfaceIntersection(), PrimitivePatch< FaceList, PointField >::surfaceType(), polyMesh::swap(), Foam::fvc::sweep(), LduMatrix< Type, DType, LUType >::symmetric(), lduMatrix::symmetric(), Foam::symmOuter(), faceZoneSet::sync(), globalMeshData::syncData(), syncTools::syncEdgeList(), syncTools::syncEdgeMap(), syncTools::syncPointList(), syncTools::syncPointMap(), pointConstraints::syncUntransformedData(), tabulatedCumulative::tabulatedCumulative(), tabulatedDensity::tabulatedDensity(), ParticleStressModel::tau(), thirdBodyEfficiencies::thirdBodyEfficiencies(), pointToPointPlanarInterpolation::timeNames(), CellZoneInjection< CloudType >::topoChange(), componentDisplacementMotionSolver::topoChange(), solidBodyMotionSolver::topoChange(), refinementHistory::topoChange(), removePoints::topoChange(), rigidBodyMeshMotion::topoChange(), meshRefinement::topoChange(), addPatchCellLayer::topoChange(), hexRef8::topoChange(), cellZoneSet::topoChange(), faceZoneSet::topoChange(), pointZoneSet::topoChange(), processorPolyPatch::topoChange(), unitConversion::toStandard(), unitConversion::toUser(), MeshedSurface< Face >::transcribe(), DynamicList< T, SizeInc, SizeMult, SizeDiv >::transfer(), MeshedSurface< Face >::transfer(), fft::transform(), directionInfo::transform(), cylindrical::transform(), Foam::transform(), axesRotation::transformDiagTensor(), cylindrical::transformDiagTensor(), EulerCoordinateRotation::transformDiagTensor(), STARCDCoordinateRotation::transformDiagTensor(), globalIndexAndTransform::transformPatches(), polygonTriangulate::triangulate(), MeshedSurface< Face >::triangulate(), triSurfaceTools::triangulateFaceCentre(), Foam::patchToPatchTools::trimDistributionMap(), surfaceFeatures::trimFeatures(), cellsToCells::trimLocalTgt(), TriPatchIntersection< SrcPatchType, TgtPatchType >::TriPatchIntersection(), triSurface::triSurfInstance(), waveAtmBoundaryLayerSuperposition::UGas(), waveSuperposition::UGas(), waveSuperposition::ULiquid(), masterUncollatedFileOperation::uniformFile(), UniformTable< Type >::UniformTable(), Foam::vtkWritePolyData::unpackFieldTypeValues(), loadBalancer::update(), refiner::update(), directionInfo::updateCell(), mappedInternalValueFvPatchField< Type >::updateCoeffs(), waveDisplacementPointPatchVectorField::updateCoeffs(), waveInletOutletFvPatchField< Type >::updateCoeffs(), patchEdgeFaceRegions::updateFace(), processorGAMGInterfaceField::updateInterfaceMatrix(), edgeVertex::updateLabels(), meshRefinement::updateList(), LduMatrix< Type, DType, LUType >::updateMatrixInterfaces(), lduMatrix::updateMatrixInterfaces(), cylindrical::updatePoints(), cellZoneSet::updateSet(), faceZoneSet::updateSet(), pointZoneSet::updateSet(), fileMonitor::updateStates(), PackedBoolList::used(), MeshedSurfaceProxy< Face >::useFaceMap(), USERD_get_gold_variable_info(), USERD_set_filenames(), linearInterpolationWeights::valueWeights(), splineInterpolationWeights::valueWeights(), stepInterpolationWeights::valueWeights(), waveSuperposition::velocity(), irregular::velocity(), WallLocalSpringSliderDashpot< CloudType >::WallLocalSpringSliderDashpot(), meshReader::warnDuplicates(), meshRefinement::weightedSum(), populationBalanceSizeDistribution::write(), surfaceFieldValue::write(), patchCutLayerAverage::write(), regionSizeDistribution::write(), streamlines::write(), forceCoeffs::write(), ParticleCollector< CloudType >::write(), OBJstream::write(), OBJedgeFormat::write(), STARCDedgeFormat::write(), GTSsurfaceFormat< Face >::write(), AC3DsurfaceFormat< Face >::write(), OBJsurfaceFormat< Face >::write(), OFFsurfaceFormat< Face >::write(), OFSsurfaceFormat< Face >::write(), SMESHsurfaceFormat< Face >::write(), STARCDsurfaceFormat< Face >::write(), TRIsurfaceFormat< Face >::write(), VTKsurfaceFormat< Face >::write(), WRLsurfaceFormat< Face >::write(), X3DsurfaceFormat< Face >::write(), ensightSetWriter::write(), foamSurfaceWriter::write(), rawSurfaceWriter::write(), vtkSurfaceWriter::write(), OFstreamCollator::write(), STLsurfaceFormat< Face >::writeAscii(), STLsurfaceFormat< Face >::writeBinary(), decomposedBlockData::writeBlocks(), STARCDedgeFormat::writeCase(), STARCDsurfaceFormatCore::writeCase(), ensightPartFaces::writeConnectivity(), Foam::writeEntry(), ensightPart::writeField(), ensightPart::writeFieldList(), ReactingParcel< ParcelType >::writeFields(), fieldValueDelta::writeFileHeader(), VTKedgeFormat::writeHeader(), VTKsurfaceFormatCore::writeHeader(), WRLsurfaceFormatCore::writeHeader(), coupledPolyPatch::writeOBJ(), triSurfaceTools::writeOBJ(), Foam::meshTools::writeOBJ(), regIOobject::writeObject(), Foam::triIntersect::writePolygon(), ensightPart::writeScalarField(), searchableSurfaces::writeStats(), edgeMesh::writeStats(), extendedEdgeMesh::writeStats(), extendedCellToFaceStencil::writeStencilStats(), ensightPart::writeVectorField(), tabulatedDensity::x(), liquidMixtureProperties::Xs(), liquidMixtureProperties::Y(), faceZoneList::zonesFlipFace(), meshRefinement::zonify(), and masterOFstream::~masterOFstream().
|
inlinestatic |
|
inline |
|
inline |
Return the number of elements in the UList.
Definition at line 171 of file ListI.H.
Referenced by DynamicList< T, SizeInc, SizeMult, SizeDiv >::append(), DynamicField< T, SizeInc, SizeMult, SizeDiv >::append(), triSurfaceMesh::coordinates(), distributedTriSurfaceMesh::distribute(), distributedTriSurfaceMesh::distributedTriSurfaceMesh(), DynamicList< T, SizeInc, SizeMult, SizeDiv >::DynamicList(), patchProbes::findElements(), probes::findElements(), distributedTriSurfaceMesh::globalTris(), intersectedSurface::intersectedSurface(), ITstream::nRemainingTokens(), labelRanges::const_iterator::operator++(), DynamicList< T, SizeInc, SizeMult, SizeDiv >::operator=(), DynamicList< Foam::List >::operator=(), ITstream::print(), PackedList< nBits >::printBits(), PackedList< nBits >::printInfo(), DynamicList< T, SizeInc, SizeMult, SizeDiv >::remove(), DynamicField< T, SizeInc, SizeMult, SizeDiv >::remove(), DynamicList< T, SizeInc, SizeMult, SizeDiv >::setCapacity(), DynamicList< T, SizeInc, SizeMult, SizeDiv >::shrink(), triSurfaceMesh::size(), and distributedTriSurfaceMesh::writeStats().
|
inline |
Alias for setSize(const label)
Definition at line 138 of file ListI.H.
References setSize().
Referenced by cutPolyIsoSurface::cutPolyIsoSurface(), Cloud< ParticleType >::distribute(), coordSet::edges(), coordSet::gather(), linearInterpolationWeights::integrationWeights(), stepInterpolationWeights::integrationWeights(), Foam::patchToPatchTools::localToRemote(), matching::normalise(), nearest::normalise(), coupledPolyPatch::order(), nearest::rDistributeTgt(), Foam::patchToPatchTools::rDistributeTgtAddressing(), GeometricFieldListSlicer< Type, PatchField, GeoMesh >::set(), nearest::srcWeights(), hexRef8::storeData(), tabulatedCumulative::tabulatedCumulative(), tabulatedDensity::tabulatedDensity(), nearest::tgtWeights(), Foam::patchToPatchTools::trimDistributionMap(), cellsToCells::trimLocalTgt(), mappedInternalValueFvPatchField< Type >::updateCoeffs(), linearInterpolationWeights::valueWeights(), stepInterpolationWeights::valueWeights(), and coordSet::vertices().
Alias for setSize(const label, const T&)
Definition at line 145 of file ListI.H.
References setSize().
void setSize | ( | const label | newSize | ) |
Reset size of List.
Definition at line 281 of file List.C.
References Foam::abort(), clear(), Foam::FatalError, FatalErrorInFunction, Foam::min(), and Foam::T().
Referenced by refinementHistory::add(), preserveBafflesConstraint::add(), preserveFaceZonesConstraint::add(), preservePatchesConstraint::add(), singleProcessorFaceSetsConstraint::add(), fvMeshAdder::add(), polyMeshAdder::add(), cellTable::addCellZones(), addPatchCellLayer::addedCells(), mapPatchChange::addedPatches(), lduPrimitiveMesh::addInterfaces(), edgeSurface::addIntersectionEdges(), regIOobject::addWatch(), MeshedSurface< Face >::addZones(), GAMGAgglomeration::agglomerateLduAddressing(), extendedEdgeMesh::allNearestFeatureEdges(), face::areaInContact(), argList::argList(), layerAverage::average(), meshRefinement::balance(), bladeModel::bladeModel(), booleanSurface::booleanSurface(), searchableBox::boundingSpheres(), searchableCylinder::boundingSpheres(), searchableDisk::boundingSpheres(), searchableExtrudedCircle::boundingSpheres(), searchablePlane::boundingSpheres(), searchablePlate::boundingSpheres(), searchableSphere::boundingSpheres(), searchableSurfaceCollection::boundingSpheres(), triSurfaceMesh::boundingSpheres(), nearWallFields::calcAddressing(), primitiveMesh::calcCells(), cellToFaceStencil::calcFaceStencil(), CentredFitSnGradData< Polynomial >::calcFit(), polyLine::calcParam(), primitiveMesh::calcPointOrder(), createShellMesh::calcPointRegions(), addPatchCellLayer::calcSidePatch(), meshRefinement::calculateEdgeWeights(), GAMGAgglomeration::calculateRegionMaster(), pointMVCWeight::calcWeights(), Foam::meshCheck::cellClosedness(), cellMatcher::cellMatcher(), fvMotionSolver::cellMotionBoundaryTypes(), Foam::meshCheck::checkCoupledPoints(), MeshedSurface< Face >::checkFaces(), polyBoundaryMesh::checkParallelSync(), GAMGAgglomeration::checkRestriction(), chemPointISAT::chemPointISAT(), ensightPartFaces::classify(), refinementHistory::clone(), cellShape::collapsedFaces(), triSurfaceTools::collapseEdges(), extendedFaceToCellStencil::collectData(), extendedCellToFaceStencil::collectData(), commSchedule::commSchedule(), distributionMapBase::compact(), GAMGAgglomeration::compactLevels(), fvPatch::constraintTypes(), polyPatch::constraintTypes(), Foam::patchToPatchTools::constructDistributionMap(), removePoints::countPointUsage(), cyclicPolyPatch::coupledEdges(), cyclicPolyPatch::coupledPoints(), meshRefinement::createZoneBaffles(), motionSmootherAlgo::curPoints(), geomCellLooper::cut(), hexCellLooper::cut(), Foam::cwd(), DAC< ThermoType >::DAC(), simple::decompose(), multiLevel::decompose(), triSurfaceTools::delaunay2D(), mapPatchChange::deletedPatches(), distributedTriSurfaceMesh::distribute(), distributionMapBase::distribute(), Foam::patchToPatchTools::distributeAddressing(), patchToPatch::distributePatch(), distributionMap::distributionMap(), distributionMapBase::distributionMapBase(), snappySnapDriver::doSnap(), cell::edges(), ListHashTable< T, Key, Hash >::erase(), Pstream::exchange(), distributionMapBase::exchangeAddressing(), Pstream::exchangeSizes(), extendedEdgeMesh::extendedEdgeMesh(), extendedFeatureEdgeMesh::extendedFeatureEdgeMesh(), extendedUpwindCellToFaceStencil::extendedUpwindCellToFaceStencil(), primitiveMesh::faceEdges(), FacePostProcessing< CloudType >::FacePostProcessing(), Foam::meshCheck::facePyramidVolume(), boundBox::faces(), cellModel::faces(), refinementSurfaces::findAllHigherIntersections(), searchableSurfacesQueries::findAllIntersections(), searchableSurfacesQueries::findAnyIntersection(), patchProbes::findElements(), probes::findElements(), refinementSurfaces::findHigherIntersection(), refinementSurfaces::findInside(), searchableBox::findLine(), searchableCylinder::findLine(), searchableDisk::findLine(), searchablePlane::findLine(), searchablePlate::findLine(), searchableSphere::findLine(), searchableSurfaceCollection::findLine(), searchableSurfaceWithGaps::findLine(), triSurfaceSearch::findLine(), distributedTriSurfaceMesh::findLineAll(), searchableBox::findLineAny(), searchableCylinder::findLineAny(), searchableSphere::findLineAny(), triSurfaceSearch::findLineAny(), searchableBox::findNearest(), searchableCylinder::findNearest(), searchableDisk::findNearest(), searchableExtrudedCircle::findNearest(), searchablePlane::findNearest(), searchablePlate::findNearest(), searchableSphere::findNearest(), distributedTriSurfaceMesh::findNearest(), triSurfaceRegionSearch::findNearest(), triSurfaceSearch::findNearest(), searchableSurfacesQueries::findNearest(), refinementFeatures::findNearestEdge(), refinementSurfaces::findNearestIntersection(), searchableSurfacesQueries::findNearestIntersection(), refinementFeatures::findNearestPoint(), refinementSurfaces::findNearestRegion(), refinementFeatures::findNearestRegionEdge(), searchableExtrudedCircle::findParametricNearest(), fluxLimitedLangmuirHinshelwoodReactionRate::fluxLimitedLangmuirHinshelwoodReactionRate(), FreeStream< CloudType >::FreeStream(), GAMGAgglomeration::GAMGAgglomeration(), decomposedBlockData::gather(), globalIndex::gather(), PatchTools::gatherAndMerge(), GAMGAgglomeration::gatherList(), decomposedBlockData::gatherSlaveData(), surfaceZonesInfo::getAllClosedNamedSurfaces(), surfaceZonesInfo::getClosedNamedSurfaces(), searchableSurfaceCollection::getField(), triSurfaceMesh::getField(), distributedTriSurfaceMesh::getField(), surfaceZonesInfo::getInsidePointNamedSurfaces(), combineFaces::getMergeSets(), surfaceZonesInfo::getNamedSurfaces(), searchableBox::getNormal(), searchableCylinder::getNormal(), searchableDisk::getNormal(), searchableExtrudedCircle::getNormal(), searchablePlate::getNormal(), searchableSphere::getNormal(), searchableSurfaceCollection::getNormal(), triSurfaceMesh::getNormal(), distributedTriSurfaceMesh::getNormal(), searchableBox::getRegion(), searchableCylinder::getRegion(), searchableDisk::getRegion(), searchableExtrudedCircle::getRegion(), searchablePlane::getRegion(), searchablePlate::getRegion(), searchableSphere::getRegion(), searchableSurfaceCollection::getRegion(), triSurfaceMesh::getRegion(), distributedTriSurfaceMesh::getRegion(), surfaceZonesInfo::getUnclosedNamedSurfaces(), surfaceZonesInfo::getUnnamedSurfaces(), removePoints::getUnrefimentSet(), cellLooper::getVertEdgesNonFace(), triSurfaceTools::getVertexTriangles(), cellLooper::getVertFacesNonEdge(), searchableBox::getVolumeType(), searchableCylinder::getVolumeType(), searchableSphere::getVolumeType(), triSurfaceMesh::getVolumeType(), GAMGProcAgglomeration::globalCellCells(), addPatchCellLayer::globalEdgeFaces(), triSurfaceTools::greenRefine(), hashedWordList::hashedWordList(), Distribution< Type >::index(), indexedOctree< Type >::indexedOctree(), sortLabelledTri::indices(), volFieldValue::initialise(), cellsToCells::initialise(), GAMGInterface::interfaceInternalField(), interRegionPorosityForce::interRegionPorosityForce(), intersectedSurface::intersectedSurface(), MomentumTransferPhaseSystem< BasePhaseSystem >::invADVs(), cellZoneSet::invert(), faceZoneSet::invert(), pointZoneSet::invert(), Foam::invertManyToMany(), Foam::invertOneToMany(), dictionary::keys(), noiseFFT::Ldelta(), lduPrimitiveMesh::lduPrimitiveMesh(), lookupProfile::lookupProfile(), LUscalarMatrix::LUscalarMatrix(), repatchMesh::markFaces(), triSurface::markZones(), PatchTools::markZones(), PatchTools::matchEdges(), PatchTools::matchPoints(), Foam::matchPoints(), edgeIntersections::merge(), cellToCellStencil::merge(), cellToFaceStencil::merge(), Foam::meshCheck::mergeAndWrite(), meshRefinement::mergeBaffles(), meshRefinement::mergePatchFacesUndo(), triSurfaceTools::mergePoints(), Foam::mergePoints(), globalMeshData::mergePoints(), fileOperation::mergeTimes(), meshTriangulation::meshTriangulation(), MomentumLookupTableInjection< CloudType >::MomentumLookupTableInjection(), rigidBodyModel::movingBodyNames(), multiSolidBodyMotionSolver::multiSolidBodyMotionSolver(), IOobjectList::names(), polyBoundaryMesh::nbrEdges(), extendedEdgeMesh::nearestFeatureEdge(), extendedEdgeMesh::nearestFeatureEdgeByType(), surfaceFeatures::nearestSurfEdge(), cellCuts::nonAnchorPoints(), NonUniformTable< Type >::NonUniformTable(), Distribution< Type >::normalised(), inversePointDistanceDiffusivity::operator()(), transformPositionList::operator()(), Foam::operator>>(), argList::parse(), ParticleCollector< CloudType >::ParticleCollector(), fvPatch::patchInternalField(), noiseFFT::Pdelta(), SprayCloud< CloudType >::penetration(), phaseProperties::phaseProperties(), phasePropertiesList::phasePropertiesList(), pointMVCWeight::pointMVCWeight(), PatchTools::pointNormals(), Foam::polyMeshZipUpCells(), powerLawLopesdaCostaZone::powerLawLopesdaCostaZone(), snappySnapDriver::preSmoothPatch(), Foam::printTable(), projectCurveEdge::projectCurveEdge(), projectEdge::projectEdge(), projectVertex::projectVertex(), Distribution< Type >::raw(), ReactingLookupTableInjection< CloudType >::ReactingLookupTableInjection(), ReactingMultiphaseLookupTableInjection< CloudType >::ReactingMultiphaseLookupTableInjection(), regIOobject::read(), writeDictionary::read(), NASedgeFormat::read(), STARCDedgeFormat::read(), GTSsurfaceFormat< Face >::read(), Foam::blockMeshTools::read(), STARCD::readBoundary(), STARCD::readCells(), ReactingMultiphaseParcel< ParcelType >::readFields(), ReactingParcel< ParcelType >::readFields(), masterUncollatedFileOperation::readHeader(), repatchMesh::readTriSurface(), ensightParts::recalculate(), distributionMapBase::receive(), meshRefinement::refineCandidates(), refinementHistory::refinementHistory(), refinementRegions::refinementRegions(), refinementSurfaces::refinementSurfaces(), searchableBox::regions(), searchableCylinder::regions(), searchableDisk::regions(), searchableExtrudedCircle::regions(), searchablePlane::regions(), searchablePlate::regions(), searchableSphere::regions(), searchableSurfaceCollection::regions(), triSurfaceMesh::regions(), edgeMesh::regions(), edgeIntersections::removeDegenerates(), faceZone::reset(), distributionMapBase::schedule(), searchableSurfaceCollection::searchableSurfaceCollection(), searchableSurfaces::searchableSurfaces(), Zone< ZoneType, ZonesType >::select(), fvMeshSubset::setCellSubset(), decompositionMethod::setConstraints(), polyBoundaryMesh::setGroup(), fvMeshSubset::setLargeCellSubset(), removePoints::setRefinement(), addPatchCellLayer::setRefinement(), hexRef8::setRefinement(), refinementIterator::setRefinement(), duplicatePoints::setRefinement(), cellSets::setSize(), SortableListDRGEP< Type >::setSize(), SortableListEFA< Type >::setSize(), removePoints::setUnrefinement(), DynamicList< T, SizeInc, SizeMult, SizeDiv >::shrink(), searchableSurfacesQueries::signedDistance(), ParSortableList< Type >::sort(), extendedEdgeMesh::sortPointsAndEdges(), fileOperation::sortTimes(), meshRefinement::splitFaces(), meshRefinement::splitMeshRegions(), MeshedSurface< Face >::stitchFaces(), PatchTools::subsetMap(), triSurface::subsetMeshMap(), surfZoneIOList::surfZoneIOList(), syncTools::swapBoundaryCellList(), syncTools::swapBoundaryCellPositions(), ThermoLookupTableInjection< CloudType >::ThermoLookupTableInjection(), objectRegistry::toc(), FreeStream< CloudType >::topoChange(), polyMesh::topoChange(), removePoints::topoChange(), addPatchCellLayer::topoChange(), cellZoneSet::topoChange(), faceZoneSet::topoChange(), pointZoneSet::topoChange(), externalCoupledMixedFvPatchField< Type >::transferData(), externalCoupledTemperatureMixedFvPatchScalarField::transferData(), globalIndexAndTransform::transformIndicesForPatches(), triSurfaceTools::triangulate(), triSurfaceTools::triangulateFaceCentre(), loadBalancer::update(), edgeVertex::updateLabels(), PackedBoolList::used(), cellToCellStencil::validBoundaryFaces(), cellToFaceStencil::validBoundaryFaces(), splineInterpolationWeights::valueWeights(), volPointInterpolation::volPointInterpolation(), WallLocalSpringSliderDashpot< CloudType >::WallLocalSpringSliderDashpot(), waveSuperposition::waveSuperposition(), forceCoeffs::write(), and decomposedBlockData::writeBlocks().
|
inline |
Clear the list, i.e. set size to zero.
Definition at line 125 of file ListI.H.
Referenced by lineFace::calcSamples(), primitiveMesh::cellEdges(), primitiveMesh::cellPoints(), SortableList< T >::clear(), hashedWordList::clear(), STLsurfaceFormatCore::clear(), TRIsurfaceFormatCore::clear(), Foam::cmptAv(), Foam::cmptMag(), Foam::cmptMax(), Foam::cmptMin(), Poisson::correct(), removePoints::countPointUsage(), DimensionedField< scalar, Foam::volMesh >::DimensionedField(), refinementHistory::distribute(), DynamicList< Foam::List >::erase(), FvFaceCellWave< Type, TrackingData >::faceToCell(), refinementSurfaces::findAllHigherIntersections(), probes::findElements(), searchablePlane::findLineAll(), searchablePlate::findLineAll(), searchableSurfaceCollection::findLineAll(), searchableSurfaceWithGaps::findLineAll(), distributedTriSurfaceMesh::findLineAll(), mappedPatchBase::fromNeighbour(), cellsToCells::initialise(), Foam::inv(), MomentumTransferPhaseSystem< BasePhaseSystem >::invADVs(), Foam::mag(), Foam::magSqr(), Cloud< ParticleType >::move(), Foam::operator<<(), edgeMesh::operator=(), coupledPolyPatch::order(), patchProbes::patchProbes(), Foam::pow(), STARCDedgeFormat::read(), STARCDsurfaceFormat< Face >::read(), STLsurfaceFormat< Face >::read(), TRIsurfaceFormat< Face >::read(), repatchMesh::readTriSurface(), surfMesh::removeZones(), writeLocalObjects::resetLocalObjectName(), writeObjectsBase::resetWriteObjectName(), decompositionMethod::setConstraints(), MeshedSurface< Face >::sortFacesAndStore(), meshRefinement::splitMesh(), Foam::sqr(), MeshedSurface< Face >::stitchFaces(), MeshedSurface< Face >::subsetMesh(), UnsortedMeshedSurface< Face >::subsetMesh(), surfaceFeatures::surfaceFeatures(), MeshedSurface< Face >::triangulate(), and DimensionedField< scalar, Foam::volMesh >::~DimensionedField().
|
inline |
Append an element at the end of the list.
Definition at line 178 of file ListI.H.
References setSize().
Referenced by singleProcessorFaceSetsConstraint::add(), cellTable::addCellZones(), clouds::addSupFields(), hashedWordList::append(), lineFace::calcSamples(), GAMGAgglomeration::checkRestriction(), commSchedule::commSchedule(), forcesBase::createFileNames(), MPLICface::cutFace(), DAC< ThermoType >::DAC(), decompositionMethod::decompositionMethod(), Cloud< ParticleType >::distribute(), DRG< ThermoType >::DRG(), DRGEP< ThermoType >::DRGEP(), edgeSurface::edgeSurface(), BlendedInterfacialModel< ModelType >::evaluate(), layerAverage::fields(), streamlines::fields(), filmSurfacePolyPatch::filmSurfacePolyPatch(), filmWallPolyPatch::filmWallPolyPatch(), Foam::findEtcDirs(), Foam::findEtcFiles(), convergenceControl::getFieldTypeNames(), globalIndexAndTransform::globalIndexAndTransform(), indexedOctree< Type >::indexedOctree(), patchToPatch::intersectPatchQueue(), LocalInteraction< CloudType >::LocalInteraction(), LuoSvendsen::LuoSvendsen(), Cloud< ParticleType >::mapMesh(), mappedExtrudedWallPolyPatch::mappedExtrudedWallPolyPatch(), mappedFilmSurfacePolyPatch::mappedFilmSurfacePolyPatch(), mappedFilmWallPolyPatch::mappedFilmWallPolyPatch(), mappedInternalPolyPatch::mappedInternalPolyPatch(), mappedPolyPatch::mappedPolyPatch(), mappedWallPolyPatch::mappedWallPolyPatch(), MPPICCloud< CloudType >::motion(), findCellParticle::move(), ZoneList< pointZone, pointZoneList, polyMesh >::movePoints(), phaseInterface::nameToNameParts(), basicChemistryModel::New(), chemistryReductionMethod< ThermoType >::New(), phaseInterface::New(), nonConformalBoundary::ownerOrigBoundaryEdgeMeshEdge(), PFA< ThermoType >::PFA(), phaseTurbulenceStabilisation::phaseTurbulenceStabilisation(), polyPatch::polyPatch(), PatchPostProcessing< CloudType >::postPatch(), timeControl::read(), writeLocalObjects::resetLocalObjectName(), writeObjectsBase::resetWriteObjectName(), timeSelector::select0(), PatchEdgeFaceWave< PrimitivePatchType, Type, TrackingData >::setEdgeInfo(), FvFaceCellWave< Type, TrackingData >::setFaceInfo(), polyBoundaryMesh::setGroup(), masterUncollatedFileOperation::setTime(), extendedEdgeMesh::sortPointsAndEdges(), masterUncollatedFileOperation::subRanks(), surfaceIntersection::surfaceIntersection(), cellsToCells::tgtMeshSendCells(), patchToPatch::tgtPatchSendFaces(), Foam::unsetConfigEntries(), wallPolyPatch::wallPolyPatch(), layerAverage::write(), patchCutLayerAverage::write(), regionSizeDistribution::write(), streamlines::write(), sampledSets::write(), sampledSurfaces::write(), and codedBase::writeCode().
Append a List at the end of this list.
Definition at line 185 of file ListI.H.
References Foam::abort(), Foam::FatalError, FatalErrorInFunction, forAll, setSize(), and UList< T >::size().
|
inline |
Append a UIndirectList at the end of this list.
Transfer the contents of the argument List into this list.
and annul the argument list
Definition at line 342 of file List.C.
References clear().
Referenced by cellZoneSet::addSet(), faceZoneSet::addSet(), pointZoneSet::addSet(), extendedEdgeMesh::allNearestFeatureEdges(), extendedEdgeMesh::allNearestFeaturePoints(), setToCellZone::applyToSet(), faceZoneToFaceZone::applyToSet(), setAndNormalToFaceZone::applyToSet(), setsToFaceZone::applyToSet(), setToFaceZone::applyToSet(), setToPointZone::applyToSet(), mappedInternalPatchBase::calcMapping(), mappedPatchBase::calcMapping(), createShellMesh::calcPointRegions(), ensightPartFaces::classify(), geomCellLooper::cut(), cutPolyIsoSurface::cutPolyIsoSurface(), cyclicGAMGInterface::cyclicGAMGInterface(), cellZoneSet::deleteSet(), faceZoneSet::deleteSet(), pointZoneSet::deleteSet(), fvMeshDistribute::distribute(), distributionMapBase::distribute(), snappySnapDriver::doSnap(), dynamicMeshPointInterpolator::dynamicMeshPointInterpolator(), edgeSurface::edgeSurface(), extendedUpwindCellToFaceStencil::extendedUpwindCellToFaceStencil(), FacePostProcessing< CloudType >::FacePostProcessing(), searchableBox::findLineAll(), FreeStream< CloudType >::FreeStream(), PatchTools::gatherAndMerge(), coordSet::lines(), triSurface::markZone(), PatchTools::markZone(), cellsToCells::maskCells(), polyBoundaryMesh::matchGroups(), cellToCellStencil::merge(), cellToFaceStencil::merge(), fileOperation::mergeTimes(), multiSolidBodyMotionSolver::multiSolidBodyMotionSolver(), nonConformalBoundary::nonConformalOtherPatchIndices(), transformPositionList::operator()(), GAMGAgglomeration::procAgglomerateRestrictAddressing(), processorGAMGInterface::processorGAMGInterface(), ReactingMultiphaseParcel< ParcelType >::ReactingMultiphaseParcel(), ReactingParcel< ParcelType >::ReactingParcel(), singleRegionConvergenceControl::read(), singleRegionCorrectorConvergenceControl::read(), fieldAverage::read(), STARCDCore::readPoints(), surfMesh::readUpdate(), edgeMesh::regions(), UnsortedMeshedSurface< Face >::remapFaces(), edgeIntersections::removeDegenerates(), SortableList< T >::reverseSort(), hexRef8::setRefinement(), SortableList< T >::sort(), SortableListDRGEP< Type >::sort(), SortableListEFA< Type >::sort(), MeshedSurface< Face >::sortFacesAndStore(), extendedEdgeMesh::sortPointsAndEdges(), meshRefinement::splitMesh(), SortableListDRGEP< Type >::stableSort(), SortableListEFA< Type >::stableSort(), MeshedSurface< Face >::stitchFaces(), hexRef8::subset(), cellZoneSet::subset(), faceZoneSet::subset(), pointZoneSet::subset(), surfaceIntersection::surfaceIntersection(), faceZoneSet::sync(), cellsToCells::tgtMeshSendCells(), patchToPatch::tgtPatchSendFaces(), meshRefinement::topoChange(), hexRef8::topoChange(), cellZoneSet::topoChange(), faceZoneSet::topoChange(), pointZoneSet::topoChange(), DynamicList< T, SizeInc, SizeMult, SizeDiv >::transfer(), hashedWordList::transfer(), MeshedSurface< Face >::transfer(), MeshedSurface< Face >::triangulate(), and meshRefinement::updateList().
void transfer | ( | DynamicList< T, SizeInc, SizeMult, SizeDiv > & | a | ) |
Transfer the contents of the argument List into this list.
and annul the argument list
Definition at line 355 of file List.C.
References DynamicList< T, SizeInc, SizeMult, SizeDiv >::clearStorage(), and DynamicList< T, SizeInc, SizeMult, SizeDiv >::shrink().
void transfer | ( | SortableList< T > & | a | ) |
Transfer the contents of the argument List into this list.
and annul the argument list
Definition at line 365 of file List.C.
References SortableList< T >::shrink().
Disallow implicit shallowCopy.
Referenced by ODESolver::resizeField().
Assignment to UList operator. Takes linear time.
Definition at line 376 of file List.C.
References List_ACCESS, List_CONST_ACCESS, List_ELEM, List_END_FOR_ALL, List_FOR_ALL, and Foam::T().
Referenced by decomposedBlockData::decomposedBlockData(), DynamicList< T, SizeInc, SizeMult, SizeDiv >::operator=(), Field< Type >::operator=(), ITstream::operator=(), PackedList< nBits >::operator=(), SortableListDRGEP< Type >::operator=(), SortableListEFA< Type >::operator=(), triSurface::operator=(), SortableList< T >::operator=(), hashedWordList::operator=(), and Field< Type >::reset().
Assignment operator. Takes linear time.
Definition at line 401 of file List.C.
References Foam::abort(), Foam::FatalError, and FatalErrorInFunction.
Move assignment operator.
Definition at line 415 of file List.C.
References Foam::abort(), Foam::FatalError, and FatalErrorInFunction.
Assignment to SLList operator. Takes linear time.
Definition at line 429 of file List.C.
References LList< LListBase, T >::begin(), and LList< LListBase, T >::end().
void operator= | ( | const UIndirectList< T > & | lst | ) |
Assignment to UIndirectList operator. Takes linear time.
Definition at line 450 of file List.C.
References UIndirectList< T >::size().
void operator= | ( | const BiIndirectList< T > & | lst | ) |
Assignment to BiIndirectList operator. Takes linear time.
Definition at line 458 of file List.C.
References BiIndirectList< T >::size().
|
inline |
Read List from Istream, discarding contents of existing List.
Referenced by List< T >::List().