Git Product home page Git Product logo

ftl's People

Contributors

jeffuong avatar masstronaut avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

jeffuong digiqubi

ftl's Issues

std::vector parity

Currently a couple parts of the std::vector interface are not available on ftl::vector.

  • resize(size_type, value_type&)
  • push_back(value_type&&)

These should be implemented to provide full drop-in compatibility.

Create Inline Vector

Inline vectors do something similar to the small string optimization (SSO) by allocating an internal buffer capable of holding N elements, where N is specified as a template parameter. The inline vector should type erase to the underlying vector type.

Create unordered vector

This vector should be able to provide O(1) erase operations by no longer guaranteeing the ordering of the elements in the container after an erase operation is completed, usually by overwriting it with elements from the back of the vector.

default_allocator allocate and deallocate method

The implementation of allocate and deallocate should not use the new[] and delete[] operators as they are standardly used for allocation/deallocation + construction/destruction, although they are used to create a char[]. This should be substituted for operator new and operator delete functions which solely allocates and deallocates memory.
More Info:
operator new, operator new[]: http://en.cppreference.com/w/cpp/memory/new/operator_new
operator delete, operator delete[]: http://en.cppreference.com/w/cpp/memory/new/operator_delete

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.