public Method

Set.delete(o)

Deletes the given object from the set and returns self. Use subtract to delete several items at once.

Source Code

# File set.rb, line 213
def delete(o)
  @hash.delete(o)
  self
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.