Search

June 17, 2021
General »
...not just objects from C-code, but nodes in a connected graph.

I haven't...
June 14, 2021
General »
...Oh for sure. Generalizing the relationships that nodes have would be pretty difficult. Trees need...
June 14, 2021
General »
...an optimization entry that says how many nodes you should move up or down when...
June 12, 2021
General »
...you encapsulate it and only allow accessing nodes through `return scope` member functions, then you...
June 11, 2021
Learn »
...child nodes
      if (lintResult != 0 && rhs ! is null) { lintResult = rhs.opApply(dg); } /// recursing child nodes...
June 09, 2021
Learn »
...child nodes
      if (lintResult != 0 && rhs ! is null) { lintResult = rhs.opApply(dg); } /// recursing child nodes...
June 08, 2021
Issues »
...std.sumtype;

struct Choice { Node[] nodes; }
struct Seq { Node[] nodes; }
alias Node = SumType!(
    Choice,
    Seq...
June 08, 2021
Learn »
...child nodes
      if (lintResult != 0 && rhs ! is null) { lintResult = rhs.opApply(dg); } /// recursing child nodes...
June 08, 2021
Learn »
...child nodes
      if (lintResult != 0 && rhs ! is null) { lintResult = rhs.opApply(dg); } /// recursing child nodes...
June 07, 2021
Learn »
...recursing child nodes
      if (lintResult != 0 && rhs) { lintResult = rhs.opApply(dg); } /// recursing child nodes

      return...
2 3 4 5 6 7 8 9 10 11 12 13
Next ›   Last »