Skip to content

Instantly share code, notes, and snippets.

@imphasing
Created October 4, 2011 13:49
Show Gist options
  • Save imphasing/1261693 to your computer and use it in GitHub Desktop.
Save imphasing/1261693 to your computer and use it in GitHub Desktop.
public IEnumerator<IScheminType> GetEnumerator ()
{
var c = Cdr();
if (!this.Empty)
yield return Car();
c = Cdr();
while (!c.Empty || c.quoted) {
yield return c.Car();
c = c.Cdr();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment