Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UDict docs #7

Merged
merged 14 commits into from
Jul 5, 2024
Prev Previous commit
Next Next commit
UDict: test data toc label
bleudev committed Jul 1, 2024
commit ced2704dbf7c2f9007e0d901c37e545e2de952dc
4 changes: 2 additions & 2 deletions docs/useful_classes/udict.md
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ tags:

In this documentation KT, VT and CDV will be using in methods.

## class UDict[KT, VT, CDV]
# class UDict[KT, VT, CDV]

```py
class UDict(dictionary: AnyDict[KT, VT]) # (1)!
@@ -42,7 +42,7 @@ getting item, method will return `default`.
d = UDict(hello=world, hi=python, default=10)
```

## (property, settable) dictionary: dict[KT, VT]
## (property, settable) dictionary: dict[KT, VT] { data-toc-label="dictionary" }

UDict's dictionary.