forked from deltixlab/DFP
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #61 from epam/master
Remove Deprecated annotations
- Loading branch information
Showing
10 changed files
with
535 additions
and
210 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
# Frequently Asked Questions | ||
|
||
## Why not use `decimal` C# data data type ? | ||
|
||
Decimal in C# is just not that good. | ||
Decimal in C# is just not that good. | ||
* It is uses 12 bytes for mantissa (effectively 16) | ||
* It does not have CLR support. i.e. all operators will be working as functions (slower than DFP).TODO: Benchmark proof. | ||
|
||
## What are the *Checked functions in Java? | ||
The *Checked functions in Java are not intended to be used directly. | ||
These special functions are required just for ValueTypeAgent support. |
Oops, something went wrong.