Lines Matching refs:handle
25 ``concurrent_lru_cache::handle`` object that refers to an item instead of its value.
26 Once there are no ``handle`` objects holding reference to an item, it is considered unused.
65 class handle {
67 handle();
68 handle( handle&& other );
70 ~handle();
72 handle& operator=( handle&& other );
76 }; // class handle
81 handle operator[]( key_type key );
105 .. cpp:function:: handle operator[]( key_type k );
111 **Returns**: a ``handle`` object holding reference to the matching value.
116 ``handle`` class
121 .. cpp:function:: handle();
123 **Effects**: Constructs a ``handle`` object that does not refer to any value.
127 .. cpp:function:: handle( handle&& other );
135 .. cpp:function:: ~handle();
143 .. cpp:function:: handle& operator=( handle&& other );