-
The code is actually almost C and not C++. Would a translation to C++ be feasible (especially using modern data structures instead of dynamically allocated plain arrays)?
-
### Iterators in STL have hierachy and more or less strict interface, which obliges to follow rules, which maybe not applicable for some containers(examples need to be provided in future)
**To prov…
-
Here are some things that this includes (more specifics to be added later):
[ ] nullptr, not 0 as a pointer, or NULL either.
[ ] use std containers when possible: i.e. remove the `array` and `queue`…
-
Right now we have `libraries`, `runtime` and `engine`. Recommend we introduce a 4th, lower level `core` type library that would contain our low level `stl` wrapper and low level stuff like memory func…
-
Using CxxWrap.jl is really smooth and it's exceptionally well built, thank you!
I don't see a clean way to wrap `std::array`s in a generalizable way. I'm currently wrapping individual instantiation…
-
Do we want to support a `for_all()` interface that can operate on `const` containers? Right now containers have to be non-`const` to use `for_all`, and this is not always desirable (for example, when …
-
Attached is a minimum working example of two compilation issues I've come across when using `language="c++"` with Cython. This excerpt was distilled down from code for a dense neural network; hence t…
-
Thanks for a great string retrieval package! Been using it with C++ and am setting it up to work with Python.
However, I was unable to build simstring for use with Python using Swig 2.04. My proble…
-
```
Description:
Target compiler:
- VS 11 and later
- Clang 3.2 and later
- GCC 4.5 and later
- ICC 11.1 and later
Used feature:
- auto and decltype keyword
- rep…
-
```
Hi, All, I made some changes for old gcc:
* Add a btree_config.h
* Config type_traits according to whether c++11 is support and enabled by
compiler.
* Allow user define size_type to be size_t, w…