vimwiki/tech/C++.wiki

33 lines
591 B
Plaintext
Raw Normal View History

2021-09-22 17:23:25 +00:00
= C++ =
Object Oriented super set of C. Great for larger projects, with minimal
drawbacks due to the Object abstraction.
2022-04-28 18:30:01 +00:00
== Frameworks and libraries ==
* [[Crow]]
2021-09-22 17:23:25 +00:00
== Features ==
* [[constexpr]]
* [[inline_static_member|inline static members]]
2022-03-03 17:45:01 +00:00
== Common operators ==
=== Distance between two enumerators ===
To find the distance between two enumerators, use `std::distance`.
2022-03-03 18:00:01 +00:00
It is from the `<iterator>` header. It takes two params, a begin and end
iterator. It returns an int of the number of spaces between the two iterators.
Run time is `O(n)`
2022-03-03 17:45:01 +00:00
2021-09-22 17:23:25 +00:00
== Also See ==
[[C]]
2021-09-24 04:22:57 +00:00
[[index]]