clojure.lang.PersistentTreeMap.withMeta C# (CSharp) Method

withMeta() public method

Create a copy with new metadata.
public withMeta ( IPersistentMap meta ) : IObj
meta IPersistentMap The new metadata.
return 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);
        }