예제 #1
0
파일: Misc.cs 프로젝트: mkpace/hammurabi
 /// <summary>
 /// Returns the set of all Things in the session, except two specific Things.
 /// </summary>
 public static Tset peopleBut(Thing p1, Thing p2)
 {
     return(Facts.AllKnownPeople() - p1 - p2);
 }
예제 #2
0
파일: Misc.cs 프로젝트: mkpace/hammurabi
 /// <summary>
 /// Returns the set of all Things in the session.
 /// </summary>
 public static Tset people()
 {
     return(Facts.AllKnownPeople());
 }