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