Changeset 813 in Sophya for trunk/SophyaLib/TArray/utilarr.h


Ignore:
Timestamp:
Apr 5, 2000, 5:44:19 PM (25 years ago)
Author:
ansari
Message:

Correction bug/amelioarions TArray,TMatrix,TVector - Reza 5/4/2000

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/TArray/utilarr.h

    r804 r813  
    2929class Range {
    3030public:
    31   explicit Range(uint_4 start=0, uint_4 size=1, uint_4 step=1);
     31  explicit Range(uint_4 start=0, uint_4 end=0, uint_4 size=1, uint_4 step=1);
    3232  inline uint_4 & Start()  {  return start_; }
    33   inline uint_4 & Size()  {  return size_; }
    34   inline uint_4 & Step()  {  return step_; }
     33  inline uint_4 & End()    {  return end_; }
     34  inline uint_4 & Size()   {  return size_; }
     35  inline uint_4 & Step()   {  return step_; }
    3536protected:
    36   uint_4 start_, size_, step_;
     37  uint_4 start_, end_, size_, step_ ;
    3738};
    3839
Note: See TracChangeset for help on using the changeset viewer.