diff --git a/src/private/queues/linked.nim b/src/private/queues/linked.nim index 1be772b..1e4edf5 100644 --- a/src/private/queues/linked.nim +++ b/src/private/queues/linked.nim @@ -11,11 +11,15 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. + +## A deque implemented on top of a doubly linked list + import strformat type - DequeNode*[T] = ref object + DequeNode[T] = ref object + ## Linked list node next: DequeNode[T] prev: DequeNode[T] val: T