Metafunction
IsContiguous
Determines whether a container stores its elements in a contiguous array.
IsContiguous<T>::VALUE
Parameters
T
Type that is tested for being a string.
Return Values
VALUE
true if T is a string, false otherwise.
Remarks
Definition: A sequence container is "contiguous", if its elements are stored in a single contiguous array. Examples for contiguous sequences are Alloc String or char array.
If an object obj is a contiguous sequence, then begin(obj) can be converted to a pointer to the first element of the content array.
SeqAn - Sequence Analysis Library - www.seqan.de