TestCombinations.cxx
Go to the documentation of this file.
1 /*===========================================================================================================
7 * Licensed under the MIT License, you may not use this file except in compliance with the License.
12 * Unless required by applicable law or agreed to in writing, software distributed under the License is
13 * distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and limitations under the License.
19 *=========================================================================================================*/
42 List combinations = Combinations<Container, Const_IT>(kEmptyCollection.begin(), kEmptyCollection.end());
49 List combinations = Combinations<Container, Const_IT>(kUnicCollection.end(), kUnicCollection.begin());
56 List combinations = Combinations<Container, Const_IT>(kUnicCollection.begin(), kUnicCollection.end());
64 const Container kSmallArray(SmallIntArray, SmallIntArray + sizeof(SmallIntArray) / sizeof(Value));
83 for (std::list<std::string>::const_iterator it = combinations.begin(); it != combinations.end(); ++it)
Definition: combinations.hxx:28
std::list< Container > Combinations(const IT &begin, const IT &end)
Definition: combinations.hxx:45