listas
v0.2.0
Published
An inmutable implementation of Data Structures
Downloads
1
Maintainers
Readme
Listas
Listas js is an library that implements the List Data Structure, but we implemented a inmutable version of this Data Stucture
Listas js es una libreria libre de dependencias la cual implementa a la Estructuras de Datos "Lista", lo interesante de esta libreria es que hace una implementación inmutable de las listas.
To install you must execute the following command
Para instalarla solo deberas ejecutar el siguiente comando:
$ npm install --save listas
Once installed the only thing you need to do is require in your file and start playing
Una vez instala la Librería solo necesitas hacer lo siguiente para tenerla disponible en tu programas:
// Require the Library
// Importa la libreria
const List = require('listas');
// We create an instance of the list and ready
// Creamos una instancia de la lista y listo podemos empezar a aplicar métodos
let l = new List();
let list = l.addFirst(1);
Docs - Documentación
To check the docs follow this link
Para revisar la documentación deberás ir al siguiente enlace haz click aquí
Contributors - Colaboradores
- José Roberto Quevedo (@zoomelectrico)
License - Licencia
MIT
Community
Feel free to fork and make some modification to the library and then make a Pull Request, or if you want to make ask for something else in the lib open an issue or email me to ([email protected])