// methods //


    // method: determine the boolean for the given Dependency Requisition //
    private static bool asBoolean(this DependencyRequisition requisition)
    => (requisition == DependencyRequisition.when);
Beispiel #2
0
 public static bool isWhen(this DependencyRequisition dependencyRequisition)
 => dependencyRequisition == DependencyRequisition.when;
    // methods //


    // method: determine the boolean for the given Dependency Requisition //
    public static bool asBoolean(this DependencyRequisition requisition)
    => requisition == DependencyRequisition.when;
 public Dependency(DependencyRequisition requisition, DependencyRequisite requisite)
 {
     this.requisition = requisition;
     this.requisite   = requisite;
 }
 public Dependency(DependencyRequisite requisite)
 {
     requisition    = DependencyRequisition.when;
     this.requisite = requisite;
 }
 public Dependency(DependencyRequisition requisition)
 {
     this.requisition = requisition;
 }
    public DependencyRequisite requisite;           // the Dependency Requisite (Mars Motion feature upon which its state may be depended) of this Dependency



    // constructors //


    public Dependency()
    {
        requisition = DependencyRequisition.when;
    }