Help for this page

Select Code to Download


  1. or download this
    class Xyz;
    
    ...
        x = ( x * arg ) % size; 
        ...
    }
    
  2. or download this
    class Xyz;
    
    ...
        self->set_x( ( self->get_x() * arg ) % self->get_size() ); 
        ...
    }