Ejemplo n.º 1
0
 public HList(HList argument)
     : this(new HValue[] { argument })
 {
 }
Ejemplo n.º 2
0
#pragma warning disable 168
        public bool Equals(HList other)
        => Elements.SequenceEqual(other.Elements);
 public HTuple(HList value)
     : this(new HValue[] { value })
 {
 }