// SPDX-License-Identifier: MIT
// Copyright 2025 IROX Contributors
//////// Basic iterator trait that allows the borrowing of inner items with mapped lifetimes.
pubtraitLendingIterator{typeItem<'a>whereSelf:'a;fnnext_ref(&mutself)->Option<Self::Item<'_>>;}