Skip to content

Commit 0d53a6e

Browse files
committed
Updating docs with usage
1 parent 7e2cd3f commit 0d53a6e

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,18 @@ Determines if the given value is a list, dict, or UserDict.
8888

8989
- `boolean` - Whether the the value is a list, dict, or UserDict.
9090

91+
#### Usage
92+
93+
```python
94+
my_dict = { 'a': 1 }
95+
if Arr.accessible(my_dict):
96+
print("It is!")
97+
98+
my_list = [ 1 ]
99+
if Arr.accessible(my_list):
100+
print("This is too!")
101+
```
102+
91103
<a id="Arr.add"></a>
92104

93105
### add

0 commit comments

Comments
 (0)