clojure.lang.PersistentStructMap.Seq.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 Seq(meta, _keys, _vals, _i, _ext);
            }
PersistentStructMap.Seq