File: chat-websocket/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/NullReduction.as

Recommend this page to a friend!
  Classes of Igor Escobar   Terminal Crossword   chat-websocket/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/NullReduction.as   Download  
File: chat-websocket/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/NullReduction.as
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Terminal Crossword
Generate a crosswords board on a text console
Author: By
Last change:
Date: 2 years ago
Size: 570 bytes
 

Contents

Class file image Download
package com.hurlant.math { use namespace bi_internal; /** * A "null" reducer */ public class NullReduction implements IReduction { public function revert(x:BigInteger):BigInteger { return x; } public function mulTo(x:BigInteger, y:BigInteger, r:BigInteger):void { x.multiplyTo(y,r); } public function sqrTo(x:BigInteger, r:BigInteger):void { x.squareTo(r); } public function convert(x:BigInteger):BigInteger { return x; } public function reduce(x:BigInteger):void { } } }