Method code for $integer._range_type()

[Turn off line numbering]
  1: arg type;
  2: 
  3: switch (type) {
  4:     case "0" .. "9":
  5:         return toint(type);
  6:     case "$":
  7:         return 'end;
  8:     case ".":
  9:         return 'cur;
 10:     case "#", "^":
 11:         return 'bgn;
 12:     default:
 13:         throw(~invrange, "Invalid range character \"" + type + "\".", type);
 14: }

["// Created 26-Mar-1995 as a part of ColdCore, see: @help Credit"]

the Cold Dark