From ce2f573ab22fc1fa9ef3782f4ed22c28a56ae910 Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Sun, 29 Oct 2000 21:35:59 +0000 Subject: [PATCH] new file, based on the C++ standard, not SGI STL's definition of Assignable [SVN r8062] --- Assignable.html | 116 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 116 insertions(+) create mode 100644 Assignable.html diff --git a/Assignable.html b/Assignable.html new file mode 100644 index 0000000..c3109df --- /dev/null +++ b/Assignable.html @@ -0,0 +1,116 @@ + + + +Assignable + + +C++ Boost + +
+

Assignable

+ +

Description

+A type is Assignable if it is possible to assign one object of the type +to another object of that type. + + +

Notation

+ + + + + + + + + + + + + + + + +
+T + +is type that is a model of Assignable +
+t + +is an object of type T +
+u + +is an object of type T or possibly const T +
+

Definitions

+

Valid expressions

+ + + + + + + + + + + + + + +
+Name + +Expression + +Return type + +Semantics +
+Assignment + +t = u + +T& + +t is equivalent to u +
+ + + +

Models

+ + + +

See also

+DefaultConstructible +and +CopyConstructible + +
+
+ + +
Copyright © 2000 +Jeremy Siek, Univ.of Notre Dame (jsiek@lsc.nd.edu) +
+ + +