tweetcast/client/lib/websocket-js/flash-src/third-party/com/hurlant/math/IReduction.as
author Raphael Velt <raph.velt@gmail.com>
Mon, 10 Oct 2011 15:24:28 +0200
changeset 310 526d3e411736
parent 306 70c9688a1486
permissions -rwxr-xr-x
Merge

package com.hurlant.math
{
	internal interface IReduction
	{
		function convert(x:BigInteger):BigInteger;
		function revert(x:BigInteger):BigInteger;
		function reduce(x:BigInteger):void;
		function mulTo(x:BigInteger, y:BigInteger, r:BigInteger):void;
		function sqrTo(x:BigInteger, r:BigInteger):void;
	}
}