Concept ConvertibleConcept
A type that can be converted into another.

Defined in <seqan/basic.h>
Signature Convertible<T, S>

Detailed Description

Expects instances of type S to be assignable to instances of type T.

Valid Expressions

t = s;  // t, s are of type T, S

See Also

Member Function Overview

Member Functions Detail

T & T::operator=(S const & other);

C++ built-in assignment operator.

The C++ standard requires the assignment operator to be a member function.

Data Races

Thread safety unknown!