├── .gitignore ├── COPYING.RUNTIME ├── COPYING3 ├── COPYRIGHT ├── README.md └── sources ├── Makefile ├── Makefile.h ├── belleall.hpp ├── belledrop.hpp ├── belledropwhile.hpp ├── belleeagerbegin.hpp ├── bellefilter.hpp ├── bellesub.hpp ├── belletake.hpp ├── belletransform.hpp ├── belleviews.hpp ├── belleviewsutils.hpp ├── copyright.hpp ├── makeconstiterator.hpp ├── testall.cpp ├── testdrop.cpp ├── testdropwhile.cpp ├── testfilter.cpp ├── testsub.cpp ├── testtake.cpp └── testtransform.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuttis/belleviews/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING.RUNTIME: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuttis/belleviews/HEAD/COPYING.RUNTIME -------------------------------------------------------------------------------- /COPYING3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuttis/belleviews/HEAD/COPYING3 -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuttis/belleviews/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuttis/belleviews/HEAD/README.md -------------------------------------------------------------------------------- /sources/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuttis/belleviews/HEAD/sources/Makefile -------------------------------------------------------------------------------- /sources/Makefile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuttis/belleviews/HEAD/sources/Makefile.h -------------------------------------------------------------------------------- /sources/belleall.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuttis/belleviews/HEAD/sources/belleall.hpp -------------------------------------------------------------------------------- /sources/belledrop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuttis/belleviews/HEAD/sources/belledrop.hpp -------------------------------------------------------------------------------- /sources/belledropwhile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuttis/belleviews/HEAD/sources/belledropwhile.hpp -------------------------------------------------------------------------------- /sources/belleeagerbegin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuttis/belleviews/HEAD/sources/belleeagerbegin.hpp -------------------------------------------------------------------------------- /sources/bellefilter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuttis/belleviews/HEAD/sources/bellefilter.hpp -------------------------------------------------------------------------------- /sources/bellesub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuttis/belleviews/HEAD/sources/bellesub.hpp -------------------------------------------------------------------------------- /sources/belletake.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuttis/belleviews/HEAD/sources/belletake.hpp -------------------------------------------------------------------------------- /sources/belletransform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuttis/belleviews/HEAD/sources/belletransform.hpp -------------------------------------------------------------------------------- /sources/belleviews.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuttis/belleviews/HEAD/sources/belleviews.hpp -------------------------------------------------------------------------------- /sources/belleviewsutils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuttis/belleviews/HEAD/sources/belleviewsutils.hpp -------------------------------------------------------------------------------- /sources/copyright.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuttis/belleviews/HEAD/sources/copyright.hpp -------------------------------------------------------------------------------- /sources/makeconstiterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuttis/belleviews/HEAD/sources/makeconstiterator.hpp -------------------------------------------------------------------------------- /sources/testall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuttis/belleviews/HEAD/sources/testall.cpp -------------------------------------------------------------------------------- /sources/testdrop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuttis/belleviews/HEAD/sources/testdrop.cpp -------------------------------------------------------------------------------- /sources/testdropwhile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuttis/belleviews/HEAD/sources/testdropwhile.cpp -------------------------------------------------------------------------------- /sources/testfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuttis/belleviews/HEAD/sources/testfilter.cpp -------------------------------------------------------------------------------- /sources/testsub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuttis/belleviews/HEAD/sources/testsub.cpp -------------------------------------------------------------------------------- /sources/testtake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuttis/belleviews/HEAD/sources/testtake.cpp -------------------------------------------------------------------------------- /sources/testtransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josuttis/belleviews/HEAD/sources/testtransform.cpp --------------------------------------------------------------------------------