Fn<> AllowsFastRandomAccess
Determines whether a sequence efficiently supports random access.

Defined in <seqan/sequence.h>
Signature AllowsFastRandomAccess<T>::Type; AllowsFastRandomAccess<T>::VALUE;

Template Parameters

T The type to query.

Return Values

Type True if T allows for fast random access and False otherwise.
VALUE true if T allows for fast random access and false otherwise.

Detailed Description

For example, String and std::vector allow for fast random access, while std::list does not.