Section contents
ce32base.oxh
<TBS>
this& = NewInt64&:
Creates an int64 object and returns a handle which allows the object to be manipulated.
this& |
An value which represents the created int64 object |
If the object could not be created then an error is generated
which should be trapped by an ONERR
handler.
LOCAL this& this& = NewInt64&: DeleteInt64:(this&)
this& = NewInt642&:(value&)
Creates an int64 object and returns a handle which allows the object to be manipulated.
this& |
An value which represents the created int64 object |
If the object could not be created then an error is generated
which should be trapped by an ONERR
handler.
LOCAL this& this& = NewInt642&:(100) DeleteInt64:(this&)
this& = NewInt643&:(high&,low&)
Creates an int64 object and returns a handle which allows the object to be manipulated.
this& |
An value which represents the created int64 object |
If the object could not be created then an error is generated
which should be trapped by an ONERR
handler.
LOCAL this& this& = NewInt643&:(100,200) DeleteInt64:(this&)
this& = NewInt644&:(value)
Creates an int64 object and returns a handle which allows the object to be manipulated.
this& |
An value which represents the created int64 object |
If the object could not be created then an error is generated
which should be trapped by an ONERR
handler.
LOCAL this& this& = NewInt644&:(100.0) DeleteInt64:(this&)
DeleteInt64:(BYREF this&)
Destroys the int64 object.
BYREF this& |
A handle to an int64 object |
LOCAL this& this& = NewInt64&: DeleteInt64:(this&)
retval& = Int64AddAssign&:(this&,value&)
<TBS>
this& |
A handle to an int64 object |
value& |
A handle to an int64 object |
retval& |
A handle to an int64 object |
retval& = Int64Assign&:(this&,value&)
<TBS>
this& |
A handle to an int64 object |
value& |
A handle to an int64 object |
retval& |
A handle to an int64 object |
retval& = Int64Dec&:(this&)
<TBS>
this& |
A handle to an int64 object |
retval& |
A handle to an int64 object |
retval& =
Int64DivideAssign&:(this&,value&)
<TBS>
this& |
A handle to an int64 object |
value& |
A handle to an int64 object |
retval& |
A handle to an int64 object |
retval& =
Int64DivMod&:(this&,value&,remainder&)
<TBS>
this& |
A handle to an int64 object |
value& |
A handle to an int64 object |
remainder& |
A handle to an int64 object |
retval& |
A handle to an int64 object |
bool% = Int64EQ%:(this&,value&)
<TBS>
this& |
A handle to an int64 object |
value& |
A handle to an int64 object |
bool% |
Atrue (-1) if the int64 object are equal, otherwise returns false (0) |
bool% = Int64GE%:(this&,value&)
<TBS>
this& |
A handle to an int64 object |
value& |
A handle to an int64 object |
bool% |
Atrue (-1) if this& is greater than
or equal to value& , otherwise returns
false (0) |
value& = Int64GetInt&:(this&)
<TBS>
this& |
A handle to an int64 object |
value& |
value = Int64GetReal:(this&)
<TBS>
this& |
A handle to an int64 object |
value |
bool% = Int64GT%:(this&,value&)
<TBS>
this& |
A handle to an int64 object |
value& |
A handle to an int64 object |
bool% |
Atrue (-1) if this& is greater than value& ,
otherwise returns false (0) |
value& = Int64High&:(this&)
<TBS>
this& |
A handle to an int64 object |
value& |
retval& = Int64Inc&:(this&)
<TBS>
this& |
A handle to an int64 object |
retval& |
A handle to an int64 object |
bool% = Int64LE%:(this&,value&)
<TBS>
this& |
A handle to an int64 object |
value& |
A handle to an int64 object |
bool% |
Atrue (-1) if this& is less than or
equal to value& , otherwise returns false
(0) |
value& = Int64Low&:(this&)
<TBS>
this& |
A handle to an int64 object |
value& |
value& = Int64Lsr&:(this&,shift%)
<TBS>
this& |
A handle to an int64 object |
shift% |
Amount to shift left |
value& |
A handle to an int64 object |
bool% = Int64LT%:(this&,value&)
<TBS>
this& |
A handle to an int64 object |
value& |
A handle to an int64 object |
bool% |
Atrue (-1) if this& is less than value& ,
otherwise returns false (0) |
retval& = Int64ModAssign&:(this&,value&)
<TBS>
this& |
A handle to an int64 object |
value& |
A handle to an int64 object |
retval& |
A handle to an int64 object |
retval& = Int64Mul10&:(this&)
<TBS>
this& |
A handle to an int64 object |
retval& |
A handle to an int64 object |
retval& =
Int64MultiplyAssign&:(this&,value&)
<TBS>
this& |
A handle to an int64 object |
value& |
A handle to an int64 object |
retval& |
A handle to an int64 object |
retval& = Int64MulTop&:(this&,value&)
<TBS>
this& |
A handle to an int64 object |
value& |
A handle to an int64 object |
retval& |
A handle to an int64 object |
bool% = Int64NE%:(this&,value&)
<TBS>
this& |
A handle to an int64 object |
value& |
A handle to an int64 object |
bool% |
Atrue (-1) if this& is not equal to value& ,
otherwise returns false (0) |
value& = Int64ShlAssign&:(this&,shift%)
<TBS>
this& |
A handle to an int64 object |
shift% |
Amount to shift left |
value& |
A handle to an int64 object |
value& = Int64ShrAssign&:(this&,shift%)
<TBS>
this& |
A handle to an int64 object |
shift% |
Amount to shift right |
value& |
A handle to an int64 object |
value& =
Int64Set&:(this&,high&,low&)
<TBS>
this& |
A handle to an int64 object |
high& |
High integer value |
low& |
Low integer value |
value& |
A handle to an int64 object |
retval& =
Int64SubttractAssign&:(this&,value&)
<TBS>
this& |
A handle to an int64 object |
value& |
A handle to an int64 object |
retval& |
A handle to an int64 object |