Skip to content

Instantly share code, notes, and snippets.

@jerstlouis
Created June 22, 2014 05:41
Show Gist options
  • Save jerstlouis/3b051ceb8a0c22dde5ed to your computer and use it in GitHub Desktop.
Save jerstlouis/3b051ceb8a0c22dde5ed to your computer and use it in GitHub Desktop.
struct TopoEdge
{
Link in;
Link out;
External from;
External to;
bool breakable;
};
class External
{
LinkList<TopoEdge, out> outgoing { };
LinkList<TopoEdge, in> incoming { };
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment