Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/RustPython/RustPython
/ borrow_deque
Method
borrow_deque
crates/vm/src/stdlib/_collections.rs:49–51 ·
view source on GitHub ↗
(&self)
Source
from the content-addressed store, hash-verified
47
48
impl PyDeque {
49
fn borrow_deque(&self) -> PyRwLockReadGuard<'_, VecDeque<PyObjectRef>> {
50
self.deque.read()
51
}
52
53
fn borrow_deque_mut(&self) -> PyRwLockWriteGuard<'_, VecDeque<PyObjectRef>> {
54
self.deque.write()
Callers
11
copy
Method · 0.80
reverse
Method · 0.80
__getitem__
Method · 0.80
_mul
Method · 0.80
__len__
Method · 0.80
concat
Method · 0.80
do_lock
Method · 0.80
as_number
Method · 0.80
cmp
Method · 0.80
repr
Method · 0.80
next
Method · 0.80
Calls
1
read
Method · 0.45
Tested by
no test coverage detected