Skip to content
This repository has been archived by the owner on Jun 28, 2021. It is now read-only.

kaushalmodi/std_vector

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

62 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nim wrapper for C++ std::vector

*The contents of this repo have now transferred to https://github.com/Clonkk/nim-cppstl. This repo has been archived as of 2021/06/28.*

Documentation

What is this?

Nim wrapper to map with the C++ std::vector library.

My goal is not to create a wrapper that wraps to 100% of the C++ library.

I will gradually update the wrapper as I find need for procs from the original library.

Install

nimble install https://github.com/kaushalmodi/std_vector

Requirements

  • Compile nim with the cpp backend. Example:
    nim cpp -r src/std_vector.nim
        

References