private bool AllExists(HashTable table) { table.Add("one"); table.Add("two"); return(table.Exists("one") && table.Exists("two")); }
private bool NotEmptyDoesNotExists(HashTable table) { table.Add("Hello"); return(table.Exists("hello")); }
private bool AfterDeletionExists(HashTable table) { table.Add("Hello"); table.Delete("Hello"); return(table.Exists("Hello")); }
private bool WordExists(HashTable table) { table.Add("Hello"); return(table.Exists("Hello")); }