// fv1.cp- a dynamic vector of float (with a possibly
// non-zero low-bound) using a subscripting object
#include "fv1.h"
#include <assert. h>
float float_vector::operator[](int i) const
{
assert(i >= low());
return float_array::operator[](i - low());
}
fa_index float_vector::operator[] (int i)
{
assert(i >= low());
return float_array::operator[](i - low());
}
// End of File