Multi diag tools
Public Member Functions | Protected Member Functions | List of all members
Mdt::ItemModel::Range Class Reference

Range represents a range of rows or columns in item models. More...

#include <Range.h>

+ Inheritance diagram for Mdt::ItemModel::Range:

Public Member Functions

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...
 

Protected Member Functions

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.
 

Detailed Description

Range represents a range of rows or columns in item models.

Definition at line 28 of file Range.h.

Member Function Documentation

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

Check if range is null.

This is the same as isEmpty()

See also
isEmpty()

Definition at line 64 of file Range.h.

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

Set count.

Note
This method must be called after setFirst()

Definition at line 115 of file Range.h.


The documentation for this class was generated from the following file: