/Navi

:sparkles: A collection of convenience functions to make sparse bits of development and testing easier.

Primary LanguageC++MIT LicenseMIT

Navi

navi-image

A collection of convenience functions to make sparse bits of development and testing easier. Much like a certain fairy, Navi is intended to make quick things simple. Still in development, and untested. Not necessarily for use in production code.

Installation

A CMakeLists.txt file has been added for simple linking with CMake. For more on this, check the examples/ directory.

Usage

Using Navi should be fairly simple. A quick example:

#include <iostream>
#include <vector>
#include <navi/container.h>

using std::cout;
using std::vector;

int main() {

    //Initialize vector with 10 elements
    vector<int> v(10);

    //Fill a vector with random integers (type-hint by passing an integer in the third parameter)
    Navi::fill(v.begin(), v.end(), 0);

    //Print the vector to console
    Navi::write(v.begin(), v.end(), cout);
}