home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / c / cuj9301.zip / 1101094B < prev    next >
Text File  |  1992-11-03  |  260b  |  16 lines

  1. // fa2.cpp - a dynamic array of float
  2.  
  3. #include "fa2.h"
  4. #include <assert.h>
  5.  
  6. // other float_array member function definitions ...
  7.  
  8. float &float_array::operator[](size_t i) const
  9.     {
  10.     assert(i < len);
  11.     return array[i];
  12.     }
  13.  
  14. ----------
  15.  
  16.