Help for this page

Select Code to Download


  1. or download this
    sub save {
        ...
            $item->update() if $item->is_dirty();
        ...
    }
    
  2. or download this
    sub update_if_dirty {
        ...
        return if ! $self->is_dirty();
        ...
    }