List of Interfaces | |
License | Copyright © 2009, FreeBASIC Extended Library Development Group |
DefaultConstructible | Specifies that a type can be created without being initialized. |
CopyConstructible | Specifies that an object of the type can be created as a copy of another object of the same type. |
CopyAssignable | Specifies that an object of the type can be assigned as a copy of another object of the same type. |
Copyable | Specifies that an object of the type can be created or assigned as a copy of another object of the same type. |
EqualityComparable | Specifies that two objects of the type can be compared for equality with operator =. |
InequalityComparable | Specifies that two objects of the type can be compared for inequality with operator <>. |
LessThanComparable | Specifies that two objects of the type can be ordered with operator <. |
GreaterThanComparable | Specifies that two object of the type can be ordered with operator >. |
Comparable | Specifies that two objects of the type can be compared using the most common comparison operators. |
Printable | Specifies that an object of the type can be converted to a String value. |
Copyright © 2009, FreeBASIC Extended Library Development Group
Distributed under the FreeBASIC Extended Library Group license. See accompanying file LICENSE.txt or copy at http://code.google.com- /p- /fb-extended-lib- /wiki- /License
Specifies that an object of the type can be created or assigned as a copy of another object of the same type.
Specifies that two objects of the type can be compared using the most common comparison operators.