New Features as of version 1.07 Minor augmentations. April 15th, 2010 In the C++ area: upgraded from OpenContainers 1.6.4 to 1.6.5: * Added binary search capability to the OpenContainers: this is code from the original M2k plus its test and output * Augmented the CircularBuffer class from OpenContainers: the put method used to return void, it now returns a T&, indicating where it put the new value in its Array. * Added a Combinations generator, similar to the Permutations generator. Usage is pretty straight forward: Combinations c(n,k); // Allow to compute all n choose k comb of 1..n do { int* a = c.currentCombination(); for (int ii=0; ii