Ignore:
Timestamp:
Mar 13, 2007, 4:41:29 AM (17 years ago)
Author:
dai
Message:

CharをSByteに変更

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Include/Classes/System/Math.ab

    r124 r162  
    3232    End Function
    3333
    34     Static Function Abs(value As Char) As Char
     34    Static Function Abs(value As SByte) As SByte
    3535        If value<0 then
    3636            return -value
     
    271271    End Function
    272272
    273     Static Function Max(value1 As Char,value2 As Char) As Char
     273    Static Function Max(value1 As SByte,value2 As SByte) As SByte
    274274        If value1>value2 then
    275275            return value1
     
    351351    End Function
    352352
    353     Static Function Min(value1 As Char,value2 As Char) As Char
     353    Static Function Min(value1 As SByte,value2 As SByte) As SByte
    354354        If value1<value2 then
    355355            return value1
     
    449449    End Function
    450450
    451     Static Function Sign(value As Char) As Long
     451    Static Function Sign(value As SByte) As Long
    452452        If value = 0 then
    453453            return 0
Note: See TracChangeset for help on using the changeset viewer.