Range represents a range of rows or columns in item models.
More...
#include <Range.h>
|
constexpr void | clear () noexcept |
| Clear range.
|
|
constexpr bool | isValid () const noexcept |
| Check if range is valid. More...
|
|
constexpr bool | isEmpty () const noexcept |
| Check if range is empty.
|
|
constexpr bool | isNull () const noexcept |
| Check if range is null. More...
|
|
|
constexpr void | setFirst (int f) noexcept |
| Set first.
|
|
constexpr int | first () const noexcept |
| Get first. More...
|
|
constexpr void | setLast (int l) noexcept |
| Set last.
|
|
constexpr int | last () const noexcept |
| Get last. More...
|
|
constexpr void | setCount (int count) noexcept |
| Set count. More...
|
|
constexpr int | count () const noexcept |
| Get count. More...
|
|
constexpr bool | contains (int e) const noexcept |
| Check if this range contains a element.
|
|
Range represents a range of rows or columns in item models.
Definition at line 28 of file Range.h.
constexpr int Mdt::ItemModel::Range::count |
( |
| ) |
const |
|
inlineprotectednoexcept |
Get count.
Returns count of element in this range if it is valid, otherwise 0.
- See also
- isValid()
Definition at line 127 of file Range.h.
constexpr int Mdt::ItemModel::Range::first |
( |
| ) |
const |
|
inlineprotectednoexcept |
Get first.
- Warning
- first is returned as it was set. The validity of this range should be checked before using the returned value.
- See also
- isValid()
Definition at line 86 of file Range.h.
constexpr bool Mdt::ItemModel::Range::isNull |
( |
| ) |
const |
|
inlinenoexcept |
constexpr bool Mdt::ItemModel::Range::isValid |
( |
| ) |
const |
|
inlinenoexcept |
Check if range is valid.
This range is valid if:
- Both first and last are >= 0
- Last is >= first
Definition at line 46 of file Range.h.
constexpr int Mdt::ItemModel::Range::last |
( |
| ) |
const |
|
inlineprotectednoexcept |
Get last.
- Warning
- last is returned as it was set. The validity of this range should be checked before using the returned value.
- See also
- isValid()
Definition at line 106 of file Range.h.
constexpr void Mdt::ItemModel::Range::setCount |
( |
int |
count | ) |
|
|
inlineprotectednoexcept |
The documentation for this class was generated from the following file:
- libs/ItemModel/src/Mdt/ItemModel/Range.h