office-gobmx/o3tl
Luboš Luňák 62b58e88d8 allow altering the max size of o3tl::lru_cache
Change-Id: Id119b70275e1c88a8c57f89d915241427be9dbf5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116927
Tested-by: Jenkins
Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
2021-06-09 21:20:09 +02:00
..
qa allow altering the max size of o3tl::lru_cache 2021-06-09 21:20:09 +02:00
CompilerTest_o3tl_temporary.mk
CompilerTest_o3tl_unsafe_downcast.mk Introduce o3tl::unsafe_downcast for known-good dynamic_cast downcasts 2019-10-08 18:07:57 +02:00
CppunitTest_o3tl_tests.mk Move unit conversion code to o3tl, and unify on that in more places 2021-02-14 12:50:01 +01:00
Makefile switch to include-based build rather than sourced-based build 2012-02-05 19:34:05 -06:00
Module_o3tl.mk Don't run CompilerTest_o3tl_* with COMPILER_PLUGIN_TOOL=... 2020-05-26 18:57:47 +02:00
README.md Updated README.md files 2021-04-19 11:13:41 +02:00

LibreOffice Template Library

Very basic template functionality, a bit like boost or STL, but specific to LibreOffice.

o3tl stands for "OOo [o3, get it?] template library", in which OOo stands for OpenOffice.org, predecessor of LibreOffice.

From https://blog.thebehrens.net/2006/01/15/update-cow_wrapper-is-available-now/ The scope for o3tl is admittedly kind of ambitious, as it should contain "...very basic (template) functionality, comparable to what's provided by boost or stl, but specific to OOo (what comes to mind are e.g. STL adapters for our own data types and UNO, and stuff that could in principle be upstreamed to boost, but isn't as of now)."

Class Overview

  • [git:include/o3tl/cow_wrapper.hxx]

    A copy-on-write wrapper.

  • [git:include/o3tl/lazy_update.hxx]

    This template collects data in input type, and updates the output type with the given update functor, but only if the output is requested. Useful if updating is expensive, or input changes frequently, but output is only comparatively seldom used.

  • [git:include/o3tl/vector_pool.hxx]

    Simple vector-based memory pool allocator.

  • [git:include/o3tl/functional.hxx]

    Some more templates, leftovers in spirit of STLport's old functional header that are not part of the C++ standard (STLport has been replaced by direct use of the C++ STL in LibreOffice).