(IPersistentMap meta)
| 53 | } |
| 54 | |
| 55 | public PersistentArrayMap withMeta(IPersistentMap meta){ |
| 56 | if(meta() == meta) |
| 57 | return this; |
| 58 | return new PersistentArrayMap(meta, array); |
| 59 | } |
| 60 | |
| 61 | PersistentArrayMap create(Object... init){ |
| 62 | return new PersistentArrayMap(meta(), init); |