(Object key, Object notFound)
| 149 | } |
| 150 | |
| 151 | public Object valAt(Object key, Object notFound){ |
| 152 | if(key == null) |
| 153 | return hasNull ? nullValue : notFound; |
| 154 | return root != null ? root.find(0, hash(key), key, notFound) : notFound; |
| 155 | } |
| 156 | |
| 157 | public Object valAt(Object key){ |
| 158 | return valAt(key, null); |