WordArray.st
changeset 3879 0b5011fc50ef
parent 3868 921db17f209a
equal deleted inserted replaced
3878:8c30e6e6d334 3879:0b5011fc50ef
    75 
    75 
    76     "Created: / 15-09-2011 / 14:10:54 / cg"
    76     "Created: / 15-09-2011 / 14:10:54 / cg"
    77 !
    77 !
    78 
    78 
    79 maxVal
    79 maxVal
    80     "the maximum value which can be stored in instances of me"
    80     "the maximum value which can be stored in instances of me.
       
    81      For WordArrays, this is 16rFFFF (largest 16bit unsigned int)"
    81 
    82 
    82     ^ 16rFFFF
    83     ^ 16rFFFF
    83 !
    84 !
    84 
    85 
    85 minVal
    86 minVal
    86     "the minimum value which can be stored in instances of me"
    87     "the minimum value which can be stored in instances of me.
       
    88      For WordArrays, this is 0"
    87 
    89 
    88     ^ 0
    90     ^ 0
    89 ! !
    91 ! !
    90 
    92 
    91 !WordArray methodsFor:'accessing'!
    93 !WordArray methodsFor:'accessing'!
   126 
   128 
   127 !WordArray class methodsFor:'documentation'!
   129 !WordArray class methodsFor:'documentation'!
   128 
   130 
   129 version
   131 version
   130     ^ '$Header$'
   132     ^ '$Header$'
       
   133 !
       
   134 
       
   135 version_CVS
       
   136     ^ '$Header$'
   131 ! !
   137 ! !
   132 
   138