home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_10_11 / 1011070c < prev    next >
Text File  |  1992-09-14  |  195b  |  13 lines

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