We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5ba47d commit 37912cfCopy full SHA for 37912cf
src/circular_buffer.jl
@@ -179,6 +179,11 @@ Return capacity of CircularBuffer.
179
"""
180
capacity(cb::CircularBuffer) = cb.capacity
181
182
+# Base might define `isfull` from julia 1.11 onwards, see julia PR #53159
183
+if isdefined(Base, :isfull)
184
+ import Base: isfull
185
+end
186
+
187
188
isfull(cb::CircularBuffer)
189
0 commit comments