public bool EqualsAccent(Accent other) => this.EqualsAtom(other) && InnerList.NullCheckingEquals(other.InnerList);
public IMathAtom Visit(Accent target, bool finalize) => new Accent(target, finalize);
public Accent(Accent cloneMe, bool finalize) : base(cloneMe, finalize) { InnerList = AtomCloner.Clone(cloneMe.InnerList, finalize); }