Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changes between Version 23 and Version 24 of ChapterThreading

Show
Ignore:
Author:
schveiguy (IP: 12.163.137.244)
Timestamp:
04/04/08 15:25:39 (16 years ago)
Comment:

Fixed bug with reverse example

Legend:

Unmodified
Added
Removed
Modified
  • ChapterThreading

    v23 v24  
    3737{ 
    3838        // Iterate in reverse order 
    39         for(int i=a.length; i>=0; i--) 
     39        for(int i=a.length-1; i>=0; i--) 
    4040        { 
    4141                dest[i] = a[i] + b[i];