Skip to content

Commit

Permalink
Docs generated from: feat: add bag data structure (#1429)
Browse files Browse the repository at this point in the history
* feat: add bag data structure

* refactor: incorporate feedback by scolsen
  • Loading branch information
carp-lang committed Aug 29, 2022
1 parent 1fee49c commit 095deae
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions core/Map.html
Original file line number Diff line number Diff line change
Expand Up @@ -1178,6 +1178,26 @@ <h3 id="update-with-default">

</p>
</div>
<div class="binder">
<a class="anchor" href="#update-with-default!">
<h3 id="update-with-default!">
update-with-default!
</h3>
</a>
<div class="description">
defn
</div>
<p class="sig">
(Fn [(Ref (Map a b) c), (Ref a c), (Ref (Fn [b] b d) e), b] ())
</p>
<pre class="args">
(update-with-default! m k f v)
</pre>
<p class="doc">
<p>Update value at key k in map with function f, in-place. If k doesn't exist in map, set k to (f v).</p>

</p>
</div>
<div class="binder">
<a class="anchor" href="#vals">
<h3 id="vals">
Expand Down

0 comments on commit 095deae

Please sign in to comment.