Changeset 162 for Include/Classes/System
- Timestamp:
- Mar 13, 2007, 4:41:29 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Include/Classes/System/Math.ab
r124 r162 32 32 End Function 33 33 34 Static Function Abs(value As Char) As Char34 Static Function Abs(value As SByte) As SByte 35 35 If value<0 then 36 36 return -value … … 271 271 End Function 272 272 273 Static Function Max(value1 As Char,value2 As Char) As Char273 Static Function Max(value1 As SByte,value2 As SByte) As SByte 274 274 If value1>value2 then 275 275 return value1 … … 351 351 End Function 352 352 353 Static Function Min(value1 As Char,value2 As Char) As Char353 Static Function Min(value1 As SByte,value2 As SByte) As SByte 354 354 If value1<value2 then 355 355 return value1 … … 449 449 End Function 450 450 451 Static Function Sign(value As Char) As Long451 Static Function Sign(value As SByte) As Long 452 452 If value = 0 then 453 453 return 0
Note:
See TracChangeset
for help on using the changeset viewer.