Open CASCADE Technology
7.4.0
|
An SListOfItemLocation is a LISP like list of Items. An SListOfItemLocation is : . Empty. . Or it has a Value and a Tail which is an other SListOfItemLocation. More...
#include <TopLoc_SListOfItemLocation.hxx>
Public Member Functions | |
TopLoc_SListOfItemLocation () | |
Creates an empty List. More... | |
TopLoc_SListOfItemLocation (const TopLoc_ItemLocation &anItem, const TopLoc_SListOfItemLocation &aTail) | |
Creates a List with <anItem> as value and <aTail> as tail. More... | |
TopLoc_SListOfItemLocation (const TopLoc_SListOfItemLocation &Other) | |
Creates a list from an other one. The lists are shared. More... | |
TopLoc_SListOfItemLocation & | Assign (const TopLoc_SListOfItemLocation &Other) |
Sets a list from an other one. The lists are shared. The list itself is returned. More... | |
TopLoc_SListOfItemLocation & | operator= (const TopLoc_SListOfItemLocation &Other) |
Assignment. More... | |
TopLoc_SListOfItemLocation (TopLoc_SListOfItemLocation &&theOther) | |
Move constructor. More... | |
TopLoc_SListOfItemLocation & | operator= (TopLoc_SListOfItemLocation &&theOther) |
Move operator. More... | |
Standard_Boolean | IsEmpty () const |
Returne true if this list is empty. More... | |
void | Clear () |
Sets the list to be empty. More... | |
~TopLoc_SListOfItemLocation () | |
Destructor. More... | |
const TopLoc_ItemLocation & | Value () const |
Returns the current value of the list. An error is raised if the list is empty. More... | |
const TopLoc_SListOfItemLocation & | Tail () const |
Returns the current tail of the list. On an empty list the tail is the list itself. More... | |
void | Construct (const TopLoc_ItemLocation &anItem) |
Replaces the list by a list with <anItem> as Value and the list <me> as tail. More... | |
void | ToTail () |
Replaces the list <me> by its tail. More... | |
Standard_Boolean | More () const |
Returns True if the iterator has a current value. This is !IsEmpty() More... | |
void | Next () |
Moves the iterator to the next object in the list. If the iterator is empty it will stay empty. This is ToTail() More... | |
An SListOfItemLocation is a LISP like list of Items. An SListOfItemLocation is : . Empty. . Or it has a Value and a Tail which is an other SListOfItemLocation.
The Tail of an empty list is an empty list. SListOfItemLocation are shared. It means that they can be modified through other lists. SListOfItemLocation may be used as Iterators. They have Next, More, and value methods. To iterate on the content of the list S just do.
SListOfItemLocation Iterator; for (Iterator = S; Iterator.More(); Iterator.Next()) X = Iterator.Value();
|
inline |
Creates an empty List.
TopLoc_SListOfItemLocation::TopLoc_SListOfItemLocation | ( | const TopLoc_ItemLocation & | anItem, |
const TopLoc_SListOfItemLocation & | aTail | ||
) |
Creates a List with <anItem> as value and <aTail> as tail.
|
inline |
Creates a list from an other one. The lists are shared.
|
inline |
Move constructor.
|
inline |
Destructor.
TopLoc_SListOfItemLocation& TopLoc_SListOfItemLocation::Assign | ( | const TopLoc_SListOfItemLocation & | Other | ) |
Sets a list from an other one. The lists are shared. The list itself is returned.
|
inline |
Sets the list to be empty.
|
inline |
Replaces the list by a list with <anItem> as Value and the list <me> as tail.
|
inline |
Returne true if this list is empty.
|
inline |
Returns True if the iterator has a current value. This is !IsEmpty()
|
inline |
Moves the iterator to the next object in the list. If the iterator is empty it will stay empty. This is ToTail()
|
inline |
Assignment.
|
inline |
Move operator.
const TopLoc_SListOfItemLocation& TopLoc_SListOfItemLocation::Tail | ( | ) | const |
Returns the current tail of the list. On an empty list the tail is the list itself.
|
inline |
Replaces the list <me> by its tail.
const TopLoc_ItemLocation& TopLoc_SListOfItemLocation::Value | ( | ) | const |
Returns the current value of the list. An error is raised if the list is empty.