Spec SorterConfigSize
Configuration of Sorter.

Extends SorterSpec
All Extended Pool, SorterSpec
Defined in <seqan/pipe.h>
Signature template <typename TCompare, typename TSize[, typename TFile> struct SorterConfigSize;

Template Parameters

TCompare The compare function (see STL's binary_function).
TSize The Sorter's size type.
TFile The underlying File type. File<>

Interface Function Overview

Interface Functions Inherited From Pool

Detailed Description

The requirement on TCompare are as follows: let comp be an object of type TCompare. comp(a, b) should return a value less, equal, or greater than 0 if a < b, a == b, or a > b.

See Also