Skip to content

Commit e908332

Browse files
authored
Merge pull request #2138 from borracciaBlu/doc-mdx/map-get
2 parents 61aa929 + e182cb1 commit e908332

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

website/docs/Map.mdx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -733,7 +733,10 @@ If two values have the same `hashCode`, they are [not guaranteed to be equal][Ha
733733

734734
Returns the value associated with the provided key.
735735

736-
<Signature code={`get(key: K): V | undefined`} />
736+
<Signature
737+
code={`get(key: K): V | undefined
738+
get(key: K, notSetValue: NSV): V | NSV`}
739+
/>
737740

738741
<Repl defaultValue={`Map({ a: 1, b: 2, c: 3 }).get('b');`} />
739742

0 commit comments

Comments
 (0)