PageRenderTime 48ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/js/lib/Socket.IO-node/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/IReduction.as

http://github.com/onedayitwillmake/RealtimeMultiplayerNodeJs
ActionScript | 11 lines | 11 code | 0 blank | 0 comment | 0 complexity | 6dc67180e3d720d5232998f99b844629 MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.1, MPL-2.0-no-copyleft-exception, BSD-3-Clause
  1. package com.hurlant.math
  2. {
  3. internal interface IReduction
  4. {
  5. function convert(x:BigInteger):BigInteger;
  6. function revert(x:BigInteger):BigInteger;
  7. function reduce(x:BigInteger):void;
  8. function mulTo(x:BigInteger, y:BigInteger, r:BigInteger):void;
  9. function sqrTo(x:BigInteger, r:BigInteger):void;
  10. }
  11. }