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