0.0.1 • Published 10 years ago

node-vector v0.0.1

Weekly downloads
5
License
MIT
Repository
github
Last release
10 years ago

node-vector

An implementation of the C++ <vector> type in JavaScript.

usage

var Vector = require('node-vector');

var myVector = new Vector('number', [5, 6, 2, 6]);

myVector can now have most of the usual vector methods from C++ applied to it.

example method usage

myVector.empty() // boolean - is vector empty? myVector.size() // number - length of vector myVector.clear() // void - empty the vector

Obviously these are not all of the methods available. The full list can be seen in index.js, with explanations on cppreference

notes

  • i plan to write a test suite for this project.
  • as mentioned previously, not all vector methods are/can be implemented yet.