• C++ Programming for Financial Engineering
    Highly recommended by thousands of MFE students. Covers essential C++ topics with applications to financial engineering. Learn more Join!
    Python for Finance with Intro to Data Science
    Gain practical understanding of Python to read, understand, and write professional Python code for your first day on the job. Learn more Join!
    An Intuition-Based Options Primer for FE
    Ideal for entry level positions interviews and graduate studies, specializing in options trading arbitrage and options valuation models. Learn more Join!

Most frequently used boost libraries?

Joined
6/24/09
Messages
3
Points
11
Am taking a survey. What are the 3-4 boost libraries that you use the most?

Am asking as I've only used boost infrequently, am planning on learning more, and want to prioritize my effort.
 
I use the smart pointers and date/time libraries the most. Shared and scoped pointers, and their array counterparts are useful in memory management. They reduce the need for 'new' and 'delete' almost entirely. Date/time is also useful, but I think you have to have the library built in order to use it.
 
I think smart pointers may be the widest used. Others like triplet, regexp, Spirit etc are also quite often seen.
 
If you are developing flexible algos, then

Function
Signals and Slots
Bind
(Lambda)


and useful datastructures are

any
Variant
Tuple
uBLAS

For maths, check out

Statistics distributions
Special functions


IMO there's nothing that can touch boost at the moment.


Others like triplet, regexp, Spirit etc are also quite often seen.

What's triplet?. The learning curve wih Spirit is steep!
 
Back
Top