TF++, Miscellaneous classes and modules in C++:

◆ isinside()

template<class T = int>
bool tfxx::Range< T >::isinside ( const Range< T > &  other) const
inline

is this range inside the other

Definition at line 71 of file range.h.

72  { return ((Mfirst >= other.first()) && (Mlast <= other.last())); }
Tvalue Mlast
end of range.
Definition: range.h:104
Tvalue Mfirst
start of range.
Definition: range.h:103