summaryrefslogtreecommitdiffstats
path: root/3rdparty/js/angular-1.0.2/docs/partials/api/ng.$cacheFactory.html
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/js/angular-1.0.2/docs/partials/api/ng.$cacheFactory.html')
-rw-r--r--3rdparty/js/angular-1.0.2/docs/partials/api/ng.$cacheFactory.html32
1 files changed, 0 insertions, 32 deletions
diff --git a/3rdparty/js/angular-1.0.2/docs/partials/api/ng.$cacheFactory.html b/3rdparty/js/angular-1.0.2/docs/partials/api/ng.$cacheFactory.html
deleted file mode 100644
index 5040bf5e4..000000000
--- a/3rdparty/js/angular-1.0.2/docs/partials/api/ng.$cacheFactory.html
+++ /dev/null
@@ -1,32 +0,0 @@
-<h1><code ng:non-bindable="">$cacheFactory</code>
-<span class="hint">(service in module <code ng:non-bindable="">ng</code>
-)</span>
-</h1>
-<div><h2 id="Description">Description</h2>
-<div class="description"><p>Factory that constructs cache objects.</p></div>
-<h2 id="Usage">Usage</h2>
-<div class="usage"><pre class="prettyprint linenums">$cacheFactory(cacheId[, options]);</pre>
-<h3 id="Parameters">Parameters</h3>
-<ul class="parameters"><li><code ng:non-bindable="">cacheId – {string} – </code>
-<p>Name or id of the newly created cache.</p></li>
-<li><code ng:non-bindable="">options<i>(optional)</i> – {object=} – </code>
-<p>Options object that specifies the cache behavior. Properties:</p>
-
-<ul>
-<li><code>{number=}</code> <code>capacity</code> — turns the cache into LRU cache.</li>
-</ul></li>
-</ul>
-<h3 id="Returns">Returns</h3>
-<div class="returns"><code ng:non-bindable="">{object}</code>
-– <p>Newly created cache object with the following set of methods:</p>
-
-<ul>
-<li><code>{object}</code> <code>info()</code> — Returns id, size, and options of cache.</li>
-<li><code>{void}</code> <code>put({string} key, {*} value)</code> — Puts a new key-value pair into the cache.</li>
-<li><code>{{*}}</code>get({string} key) — Returns cached value for <code>key</code> or undefined for cache miss.</li>
-<li><code>{void}</code> `remove({string} key) — Removes a key-value pair from the cache.</li>
-<li><code>{void}</code> `removeAll() — Removes all cached values.</li>
-<li><code>{void}</code> `destroy() — Removes references to this cache from $cacheFactory.</li>
-</ul></div>
-</div>
-</div>