|
Example Brick isIdentical 020
|
Description
This example uses the isEqual function to compare the
results of the copy and setq functions.
Details
(define nameList (new Brick: 2 Name:Object:3))
|
Returns: #<Record 123456>
|
The copied brick has a different Object ID than the original brick.
(copy nameList)
|
Returns: #<Record 234567>
|
The copied Brick has a different Object ID than the original Brick.
(isIdentical #<Record 123456> #<Record 234567> ) |
Returns: false
|
The isEqual function returns true with Records created with the setq function.
(setq nameList nameList2 ) |
Returns: #<Record 345678>
|
(isIdentical nameList nameList2 ) |
Returns: true
|
Related Examples
Here are examples of the isIdentical function at work.
Function Links
Here is the link to the current function used in this example.
isIdentical
Here are a number of links to other related functions.
Argument Types
Here are the links to the data types of the arguments used in this example.
Here are a number of links to examples having similar argument types.
|
Analytic Information Server (AIS)
AIS Component Systems
- Smartbase Engine
- QT C++ Libraries
- MySQL Relational Database
- AIS Lisp Libraries
- Rapid Analytic Demo IDE
|