Merge branch 'fix-big-integer-readme' into 'cnch-ce-merge'

fix(clickhosuech@0000): Keep the BigInteger orignal README

See merge request dp/ClickHouse!10251
This commit is contained in:
benyucong 2023-05-31 18:48:53 +08:00
parent 01db4d755a
commit 643a1b51c4
1 changed files with 0 additions and 3 deletions

View File

@ -13,12 +13,9 @@ respectively. Most of the C++ arithmetic operators are overloaded for these
classes, so big-integer calculations are as easy as:
#include "BigIntegerLibrary.hh"
BigInteger a = 65536;
cout << (a * a * a * a * a * a * a * a);
(prints 340282366920938463463374607431768211456)
The code in `sample.cc' demonstrates the most important features of the library.
To get started quickly, read the code and explanations in that file and run it.
If you want more detail or a feature not shown in `sample.cc', consult the