コード例 #1
0
		ExpressionCollection PopRange (int count)
		{
			ExpressionCollection range = new ExpressionCollection ();
			for (int i=0; i < count; ++i) {
				range.Insert (0, Pop ());
			}
			return range;
		}