aboutsummaryrefslogtreecommitdiffstats
path: root/signaling-server/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/IReduction.as
blob: 210a05439f2e81bf480c803ad58bdfd6c342a4a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
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;
	}
}