Project

General

Profile

Revision 6

Added by Willibald K. over 8 years ago

adding methods to query types for their number of elements, fixing an issue with the ActionPrinter

View differences:

IntType.java
61 61
			m_low < 0 ? "m" + String.valueOf(m_low * (-1)) : String.valueOf(m_low),
62 62
			m_high);
63 63
	}
64

  
65
	@Override
66
	public int valueCount() {
67
		return m_high - m_low + 1;
68
	}
69

  
64 70
}

Also available in: Unified diff