| 2444 | BetweenGenerator( T from, T to ) : m_from( from ), m_to( to ){} |
| 2445 | |
| 2446 | virtual T getValue( std::size_t index ) const { |
| 2447 | return m_from+static_cast<int>( index ); |
| 2448 | } |
| 2449 | |
| 2450 | virtual std::size_t size() const { |
| 2451 | return static_cast<std::size_t>( 1+m_to-m_from ); |
nothing calls this directly
no outgoing calls
no test coverage detected