Skip to content

Instantly share code, notes, and snippets.

View themadarchitect's full-sized avatar

Ethan Weibman themadarchitect

  • New York, New York
View GitHub Profile
@themadarchitect
themadarchitect / custom_iterator.cpp
Last active September 18, 2015 06:45 — forked from jeetsukumaran/custom_iterator.cpp
Sample C++/STL custom iterator
// Sample custom iterator.
// By perfectly.insane (http://www.dreamincode.net/forums/index.php?showuser=76558)
// From: http://www.dreamincode.net/forums/index.php?showtopic=58468
#include <iostream>
#include <vector>
#include <algorithm>
#include <iterator>
#include <cassert>