2010-03-06 Rodrigo Kumpera * BigInteger.cs: double and float coersion ops. ToString() and ToString(string). 2010-03-06 Rodrigo Kumpera * BigInteger.cs: .ctor(double) and .ctor(float). 2010-03-06 Rodrigo Kumpera * BigInteger.cs: Log. 2010-03-06 Rodrigo Kumpera * BigInteger.cs: GreatestCommonDivisor. 2010-03-06 Rodrigo Kumpera * BigInteger.cs: ModPow. 2010-03-06 Rodrigo Kumpera * BigInteger.cs: / % Pow. 2010-03-06 Rodrigo Kumpera * BigInteger.cs: DivRem. 2010-03-05 Rodrigo Kumpera * BigInteger.cs: Simplify Mul. 2010-03-05 Rodrigo Kumpera * BigInteger.cs: Mul. 2010-03-05 Rodrigo Kumpera * BigInteger.cs: coersion operators for short, ushort, byte and sbyte. 2010-03-05 Rodrigo Kumpera * BigInteger.cs: <<, >>. 2010-03-05 Rodrigo Kumpera * BigInteger.cs: | & ^ ~. 2010-03-05 Rodrigo Kumpera * BigInteger.cs: ++ --, unary +. 2010-03-05 Rodrigo Kumpera * BigInteger.cs: Abs. 2010-03-05 Rodrigo Kumpera * BigInteger.cs: Min, Max. 2010-03-05 Rodrigo Kumpera * BigInteger.cs: Negate. 2010-03-05 Rodrigo Kumpera * BigInteger.cs: Sub. 2010-03-05 Rodrigo Kumpera * BigInteger.cs: All relational ops for long. 2010-03-05 Rodrigo Kumpera * BigInteger.cs: No need to special case long.MinValue or int.MinValue as 2 complement negate solves it. 2010-03-05 Rodrigo Kumpera * BigInteger.cs: long CompareTo. 2010-03-05 Rodrigo Kumpera * BigInteger.cs: IComparable. 2010-03-04 Rodrigo Kumpera * BigInteger.cs: Relational ops for ulong with switched args. 2010-03-04 Rodrigo Kumpera * BigInteger.cs: Equals(ulong) and missing CLSCompliant. 2010-03-04 Rodrigo Kumpera * BigInteger.cs: Relational ops for ulong. Fix CoreCompare. 2010-03-04 Rodrigo Kumpera * BigInteger.cs: Add constructor and coersion operators for ulong. 2010-03-04 Rodrigo Kumpera * BigInteger.cs: Add constructor and coersion operators for uint. 2010-03-04 Rodrigo Kumpera * BigInteger.cs: Implement -1,0,1 props. Don't allocate zero array. 2010-03-04 Rodrigo Kumpera * BigInteger.cs: Implement IComparable and IEquatable. 2010-03-04 Rodrigo Kumpera * BigInteger.cs: Compare and relational ops. 2010-03-04 Rodrigo Kumpera * BigInteger.cs: Add. 2010-03-04 Rodrigo Kumpera * BigInteger.cs: GetHashCode. 2010-03-04 Rodrigo Kumpera * BigInteger.cs: Equals. 2010-03-04 Rodrigo Kumpera * BigInteger.cs: Added implicit long operator. 2010-03-04 Rodrigo Kumpera *BigInteger.cs: Added long constructor and coersion operator. 2010-03-04 Rodrigo Kumpera * BigInteger.cs: The DLR version is close to useless. Replaced by the initial bits of something that is API compliant. 2009-10-31 Miguel de Icaza * Add BigInteger.cs from the DLR 0.92, the patch in the directory above this one contains the patch against the original BigIntegerv2.cs source code. 2009-10-20 Marek Safar * ChangeLog: Added