clojure.lang.PersistentTreeMap.withMeta C# (CSharp) Метод

withMeta() публичный Метод

Create a copy with new metadata.
public withMeta ( IPersistentMap meta ) : IObj
meta IPersistentMap The new metadata.
Результат IObj
        public override IObj withMeta(IPersistentMap meta)
        {
            return meta == _meta
                ? this
                : new PersistentTreeMap(meta, _comp, _tree, _count);
            // Java: return new PersistentTreeMap(meta, _comp, _tree, _count);
        }