Return the internal array being used to store the keys. @webref intdict:method @webBrief Return the internal array being used to store the keys
()
| 231 | * @webBrief Return the internal array being used to store the keys |
| 232 | */ |
| 233 | public Iterable<String> keys() { |
| 234 | return new Iterable<String>() { |
| 235 | |
| 236 | @Override |
| 237 | public Iterator<String> iterator() { |
| 238 | return keyIterator(); |
| 239 | } |
| 240 | }; |
| 241 | } |
| 242 | |
| 243 | |
| 244 | // Use this to iterate when you want to be able to remove elements along the way |
no outgoing calls
no test coverage detected