Character.st
changeset 21520 808c4175a149
parent 21519 f39808be9f7e
child 21535 f1ca40b3f545
equal deleted inserted replaced
21519:f39808be9f7e 21520:808c4175a149
  1466     "Created: / 27.10.1997 / 14:40:37 / cg"
  1466     "Created: / 27.10.1997 / 14:40:37 / cg"
  1467 !
  1467 !
  1468 
  1468 
  1469 to:aMagnitude
  1469 to:aMagnitude
  1470     "Return an Interval over the characters from the receiver to <aMagnitude>.
  1470     "Return an Interval over the characters from the receiver to <aMagnitude>.
  1471      Wrap <aMagnitude> if it is not a legal Character value. (JS)"
  1471      Wrap <aMagnitude> if it is not a legal Character value. (JS)
       
  1472      CG: why wrap - is this a good idea?"
  1472 
  1473 
  1473     ^ Interval from:self to:(aMagnitude \\ 16r3FFFFFFF)
  1474     ^ Interval from:self to:(aMagnitude \\ 16r3FFFFFFF)
       
  1475 
       
  1476     "Modified (comment): / 22-02-2017 / 10:56:38 / cg"
  1474 !
  1477 !
  1475 
  1478 
  1476 to:aMagnitude by:inc
  1479 to:aMagnitude by:inc
  1477     "Return an Interval over the characters from the receiver to <aMagnitude>.
  1480     "Return an Interval over the characters from the receiver to <aMagnitude>.
  1478      Wrap <aMagnitude> if it is not a legal Character value. (JS)
  1481      Wrap <aMagnitude> if it is not a legal Character value. (JS)