예제 #1
0
 public int CompareTo(Base64 other)
 {
     return(Cmp.Values(this, other).Check(x => x._text));
 }
예제 #2
0
파일: TypeName.cs 프로젝트: jtark/Totem
 public int CompareTo(TypeName other) =>
 Cmp.Values(this, other).Check(x => x._value);
예제 #3
0
 public int CompareTo(AreaTypeName other) =>
 Cmp.Values(this, other).Check(x => x._name);
예제 #4
0
 public int CompareTo(RuntimeRegionKey other)
 {
     return(Cmp.Values(this, other).Check(x => x._name));
 }
예제 #5
0
 public int CompareTo(MapTypeKey other) =>
 Cmp.Values(this, other).Check(x => x.Area).Check(x => x.Name);
예제 #6
0
 public int CompareTo(Base64 other) =>
 Cmp.Values(this, other).Check(x => x._text);
예제 #7
0
 public int CompareTo(FlowKey other) =>
 Cmp.Values(this, other).Check(x => x.Type).Check(x => x.Id);
예제 #8
0
파일: FlowKey.cs 프로젝트: snickroger/Totem
 public int CompareTo(FlowKey other)
 {
     return(Cmp.Values(this, other).Check(x => x.Type).Check(x => x.Id));
 }
예제 #9
0
 public int CompareTo(HttpLink other)
 {
     return(Cmp.Values(this, other).Check(x => x.Host).Check(x => x.Resource));
 }
예제 #10
0
파일: Sha1.cs 프로젝트: snickroger/Totem
 public int CompareTo(Sha1 other)
 {
     return(Cmp.Values(this, other).Check(x => x._hex));
 }
예제 #11
0
 public int CompareTo(HttpAuthorization other)
 {
     return(Cmp.Values(this, other).Check(x => x.Type).Check(x => x.Credentials));
 }
예제 #12
0
 public int CompareTo(TimelinePosition other) =>
 Cmp.Values(this, other).Check(x => x._point);
예제 #13
0
 public int CompareTo(Sha1 other) =>
 Cmp.Values(this, other).Check(x => x._hex);
예제 #14
0
 public int CompareTo(DurablePrefix other) =>
 Cmp.Values(this, other).Check(x => x._value);
예제 #15
0
 public int CompareTo(RuntimeTypeKey other)
 {
     return(Cmp.Values(this, other).Check(x => x.Region).Check(x => x.Name));
 }
예제 #16
0
 public int CompareTo(DurableTypeKey other) =>
 Cmp.Values(this, other).Check(x => x.Prefix).Check(x => x.Name);