GPU-Calc: remove Alloc_Host_Ptr for clmem of NAN vector
[LibreOffice.git] / o3tl / README
blob4823d6073190c88861d72cd69f95eed23c4493cd
1 Very basic template functionality, a bit like boost or stl, but specific to LibO
3 From [http://blog.thebehrens.net/2006/01/15/update-cow_wrapper-is-available-now/]
4 The scope for o3tl is admittedly kind of ambitious, as it should contain "...very basic (template)
5 functionality, comparable to what's provided by boost or stl, but specific to OOo (what comes to mind
6 are e.g. stl adapters for our own data types and UNO, and stuff that could in principle be upstreamed
7 to boost, but isn't as of now)."
9 == Class overview ==
11 [git:o3tl/inc/o3tl/cow_wrapper.hxx]
12 A copy-on-write wrapper.
14 [git:o3tl/inc/o3tl/heap_ptr.hxx]
15 heap_ptr<> owns an object on the heap, which will be automatically deleted, when ~heap_ptr<>() is called.
17 [git:o3tl/inc/o3tl/lazy_update.hxx]
18 This template collects data in input type, and updates the output type with the given update functor,
19 but only if the output is requested. Useful if updating is expensive, or input changes frequently, but
20 output is only comparatively seldom used.
22 [git:o3tl/inc/o3tl/range.hxx]
23 Represents a range of integer or iterator values.
25 [git:o3tl/inc/o3tl/vector_pool.hxx]
26 Simple vector-based memory pool allocator.
28 [git:o3tl/inc/o3tl/compat_functional.hxx]
29 Some more templates. Contains also templates from STLport's functional header that are not part of the
30 C++ standard (STLport has been replaced by direct use of the C++ STL in Libre Office).