Skip to content

Commit

Permalink
Merge branches 'master' and 'master' of https://github.com/ETLCPP/etl
Browse files Browse the repository at this point in the history
  • Loading branch information
jwellbelove committed Jul 10, 2023
2 parents c63715c + 5025bfd commit 13bfff1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ The ETL is not designed to completely replace the STL, but complement it.
Its design objective covers three areas.

- Create a set of containers where the size or maximum size is determined at compile time. These containers are direct equivalents of those supplied in the STL.
- Be compatible with C++ 03 but implement as many of the C++ 11 additions as possible.
- Be compatible with C++ 03 but implement as many of the C++ 11/14/17/20 additions as possible.
- Add other useful components that are not present in the standard library.

The embedded template library has been designed for lower resource embedded applications.
It contains a set of containers, algorithms and utilities, some of which emulate parts of the STL.
There is no dynamic memory allocation. The library makes no use of the heap. All of the containers have a fixed capacity allowing all memory allocation to be determined at compile time.
The library is intended for any compiler that supports C++ 03.
The library is intended for any compiler that supports C++98/03/11/14/17/20.

## Main features

Expand Down

0 comments on commit 13bfff1

Please sign in to comment.