Tcl Source Code

Ticket Change Details
Login
Overview

Artifact ID: 3b111979b96c40596a1617d2fbaa147fd1301961
Ticket: 47d66253c92197d30bff280b02e0a9e62f07cee2
"lsearch -sorted -integer" on 64bit system
User & Date: dgp 2014-01-16 13:10:35
Changes

  1. icomment:
    [lsort -integer] is not portable.  The interpretation
    it places on values varies with value of
    $tcl_platform(wordSize).  For the same reason, you see:
    
    (On 32-bit system)
    % expr int(2147483648)
    -2147483648
    
    (On 64-bit system)
    % expr int(2147483648)
    2147483648
    
  2. login: "dgp"
  3. mimetype: "text/plain"