Sort the keys alphabetically (ignoring case). Uses the value as a tie-breaker (only really possible with a key that has a case change). @webref doubledict:method @brief Sort the keys alphabetically
()
| 661 | * @brief Sort the keys alphabetically |
| 662 | */ |
| 663 | public void sortKeys() { |
| 664 | sortImpl(true, false, true); |
| 665 | } |
| 666 | |
| 667 | |
| 668 | /** |