FeResPost Web Site                     FeResPost Online User Manual

VI.0.2.4 Operators

Operators are unsupported in COM. Therefore, the operators that are defined by ruby classes are replaced by methods in COM component:

For example, the following ruby statement:

   z=x+y

becomes, with COM component:

   z=x.opAdd(y)

Note that the different “operator” methods defined in ruby “Post” module are also defined in the “Application” class of COM component (section VI.2.1).