MPIR is an open source multiprecision integer (bignum) library forked from the
GMP (GNU Multi Precision) project. It consists of much code from past GMP
releases, in combination with much original contributed code.
MPIR is constructed by a developer and vendor friendly community of
professional and amateur mathematicians, computer scientists and hobbyists.
WWW: http://www.mpir.org
This change has been applied locally to dports for over a year, but it
also will facilitate vendor rebranding for FreeBSD.
Phabric: D413
Approved by: portmgr (bapt)
Changes:
* Added verbose option to reswrap.
* Updated BMP loader routines, some bullet-proofing against malicious
bitmap files.
* Changes in FXVariant: operator bool returns true for non-zero numerical
values, non-empty arrays or non-empty dictionaries. It only returns
false if the variant is FXVariant::null. This new interpretation strokes
much better with common usage patterns.
* Added asChars() API to FXVariant.
* FXPtrList now index with FXival.
* Print routines fxprintf() are now supporting NaN and Inf printouts. Also
fixed -0 printout.
* Change in FXThreadPool::wait() routine: now waits till all jobs are
finished.
* Added executeAndWait() routine to FXThreadPool and FXTaskGroup.
* Small change in FXParallel: ensure tasks are aligned in memory.
* Added FXEXEIcon and FXEXEImage. These should icons or bitmaps embedded
in Windows Executable files.
* Added FXCOLORREF2RGB and FXRGB2COLORREF macros for Windows based FOX
applications.
* Some complex math transcendentals added.
* Population-count inline functions added to fxendian.h. These use x86
builtins when possible.
* API fixes (bad parameter signatures) fixed in the list-widgets.
* CDECL attributes in some FXApp member functions (Windows Only).
Struct::Dumb creates record-like structure types, similar to the struct keyword
in C, C++ or C#, or Record in Pascal. An invocation of this module will create a
construction function which returns new object references with the given field
values. These references all respond to lvalue methods that access or modify the
values stored.
It's specifically and intentionally not meant to be an object class. You cannot
subclass it. You cannot provide additional methods. You cannot apply roles or
mixins or metaclasses or traits or antlers or whatever else is in fashion this
week.
On the other hand, it is tiny, creates cheap lightweight array-backed
structures, uses nothing outside of core. It's intended simply to be a slightly
nicer way to store data structures, where otherwise you might be tempted to
abuse a hash, complete with the risk of typoing key names. The constructor will
croak if passed the wrong number of arguments, as will attempts to refer to
fields that don't exist.
WWW: http://search.cpan.org/dist/Struct-Dumb/