Table 2 Overloaded Operators for sfloat

Member function assignment operators
--------------------------------------------------
sfloat &operator+=( sfloat sf );
sfloat &operator-=( sfloat sf );
sfloat &operator*=( sfloat sf );
sfloat &operator/=( sfloat sf );

Member function unary operators
--------------------------------------------------
sfloat operator+();
sfloat operator-();
sfloat operator++();
sfloat operator--();
sfloat operator++( int );
sfloat operator--( int );

Friend function relational operators
--------------------------------------------------
friend int operator==( sfloat sf1, sfloat sf2 );
friend int operator=( sfloat sf1, sfloat sf2 );
friend int operator( sfloat sf1, sfloat sf2 );
friend int operator>( sfloat sf1, sfloat sf2 );
friend int operator<( sfloat sf1, sfloat sf2 );
friend int operator!=( sfloat sf1, sfloat sf2 );

Non-member, non-friend function math operators
--------------------------------------------------
sfloat operator+( sfloat sf1, sfloat sf2 );
sfloat operator-( sfloat sf1, sfloat sf2 );
sfloat operator*( sfloat sf1, sfloat sf2 );
sfloat operator/( sfloat sf1, sfloat sf2 );