Skip to content

Instantly share code, notes, and snippets.

View cmbruns's full-sized avatar

Christopher Bruns cmbruns

View GitHub Profile
@cmbruns
cmbruns / custom_iterator.cpp
Last active August 3, 2018 16:51 — 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>