(Object o)
| 65 | } |
| 66 | |
| 67 | public IPersistentSet cons(Object o){ |
| 68 | if(contains(o)) |
| 69 | return this; |
| 70 | return new PersistentTreeSet(meta(),impl.assoc(o,o)); |
| 71 | } |
| 72 | |
| 73 | public IPersistentCollection empty(){ |
| 74 | return new PersistentTreeSet(meta(),(PersistentTreeMap)impl.empty()); |