Fn<> BytesPerValue
Number of bytes needed to store a value.

Defined in <seqan/basic.h>
Signature BytesPerValue<T>::VALUE

Template Parameters

T The type to query.

Return Values

VALUE The number of bytes to store on T object.

Detailed Description

By default, this function returns ceil(BitsPerValue<T>::VALUE). For built-in types, this is the same as sizeof(T).

See Also