1,852
edits
(→C++17) |
|||
Line 48: | Line 48: | ||
* "Ditch" old UNIX system functions (e.g. popen) | * "Ditch" old UNIX system functions (e.g. popen) | ||
** https://octave.discourse.group/t/moving-posix-system-call-and-library-functions-out-of-core-octave/1027 | |||
** Move to package? | ** Move to package? | ||
* performance of symbol lookup | * performance of symbol lookup | ||
** use <code>std::unordered_map</code>, rather than <code>std::map</code> to increase performance (e.g. of interpreter lookups) | ** use <code>std::unordered_map</code>, rather than <code>std::map</code> to increase performance (e.g. of interpreter lookups) | ||
Line 56: | Line 56: | ||
** Some instances are more difficult to replace. jwe will post something about this on the discourse forum. | ** Some instances are more difficult to replace. jwe will post something about this on the discourse forum. | ||
* improve HDF5 integration | * improve HDF5 integration | ||
==== Documentation ==== | ==== Documentation ==== |