Specialized bundling of boolean values as a vector of 3 components, element access using x(), y() and z() member functions. It also has some methods similar to bitSet.
More...
|
| boolVector (const boolVector &)=default |
|
boolVector & | operator= (const boolVector &)=default |
|
| boolVector (boolVector &&)=default |
|
boolVector & | operator= (boolVector &&)=default |
|
| boolVector () |
|
| boolVector (const bool val) |
|
| boolVector (const bool vx, const bool vy, const bool vz) |
|
| boolVector (Istream &is) |
|
bool | all () const |
|
bool | any () const |
|
bool | none () const |
|
unsigned int | count (const bool on=true) const |
|
bool | x () const |
|
bool | y () const |
|
bool | z () const |
|
bool & | x () |
|
bool & | y () |
|
bool & | z () |
|
void | flip () |
|
void | operator= (const bool value) |
|
void | writeEntry (const word &keyword, Ostream &os) const |
|
| FixedList ()=default |
|
| FixedList (const T &val) |
|
| FixedList (const Foam::zero) |
|
| FixedList (const T list[N]) |
|
| FixedList (const FixedList< T, N > &list) |
|
| FixedList (FixedList< T, N > &&list) |
|
| FixedList (std::initializer_list< T > list) |
|
| FixedList (const UList< T > &list) |
|
| FixedList (const FixedList< T, AnyNum > &list, const FixedList< label, N > &indices) |
|
| FixedList (const UList< T > &list, const FixedList< label, N > &indices) |
|
| FixedList (const SLList< T > &list) |
|
| FixedList (Istream &is) |
|
autoPtr< FixedList< T, N > > | clone () const |
|
const T * | cdata () const noexcept |
|
T * | data () noexcept |
|
const char * | cdata_bytes () const noexcept |
|
char * | data_bytes () noexcept |
|
T & | first () noexcept |
|
const T & | first () const noexcept |
|
T & | last () noexcept |
|
const T & | last () const noexcept |
|
label | fcIndex (const label i) const |
|
const T & | fcValue (const label i) const |
|
T & | fcValue (const label i) |
|
label | rcIndex (const label i) const |
|
const T & | rcValue (const label i) const |
|
T & | rcValue (const label i) |
|
void | checkStart (const label start) const |
|
void | checkSize (const label size) const |
|
void | checkIndex (const label i) const |
|
bool | uniform () const |
|
label | find (const T &val, label pos=0) const |
|
label | rfind (const T &val, label pos=-1) const |
|
bool | found (const T &val, label pos=0) const |
|
void | resize (const label n) |
|
void | resize_nocopy (const label n) |
|
void | setSize (const label n) |
|
void | fill (const T &val) |
|
void | fill (const Foam::zero) |
|
void | moveFirst (const label i) |
|
void | moveLast (const label i) |
|
void | swapFirst (const label i) |
|
void | swapLast (const label i) |
|
void | transfer (FixedList< T, N > &list) |
|
T & | operator[] (const label i) |
|
const T & | operator[] (const label i) const |
|
void | operator= (const T list[N]) |
|
void | operator= (const UList< T > &list) |
|
void | operator= (const SLList< T > &list) |
|
void | operator= (std::initializer_list< T > list) |
|
void | operator= (const T &val) |
|
void | operator= (const Foam::zero) |
|
void | operator= (const FixedList< T, N > &list) |
|
void | operator= (FixedList< T, N > &&list) |
|
iterator | begin () noexcept |
|
const_iterator | begin () const noexcept |
|
iterator | end () noexcept |
|
const_iterator | end () const noexcept |
|
const_iterator | cbegin () const noexcept |
|
const_iterator | cend () const noexcept |
|
reverse_iterator | rbegin () |
|
const_reverse_iterator | rbegin () const |
|
reverse_iterator | rend () |
|
const_reverse_iterator | rend () const |
|
const_reverse_iterator | crbegin () const |
|
const_reverse_iterator | crend () const |
|
void | swap (FixedList< T, N > &other) |
|
bool | operator== (const FixedList< T, N > &list) const |
|
bool | operator!= (const FixedList< T, N > &list) const |
|
bool | operator< (const FixedList< T, N > &list) const |
|
bool | operator> (const FixedList< T, N > &list) const |
|
bool | operator<= (const FixedList< T, N > &list) const |
|
bool | operator>= (const FixedList< T, N > &list) const |
|
Istream & | readList (Istream &is) |
|
Ostream & | writeList (Ostream &os, const label shortLen=0) const |
|
Specialized bundling of boolean values as a vector of 3 components, element access using x(), y() and z() member functions. It also has some methods similar to bitSet.
- Note
- The boolVector is not derived from Vector or VectorSpace since it does not share very many vector-like characteristics.
- Source files
-
Definition at line 52 of file boolVector.H.